Clean up copyright notices (#93)

This commit is contained in:
Will Scullin 2021-12-21 12:35:26 -08:00 committed by GitHub
parent 20f2c1e955
commit 70ec626dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
48 changed files with 3 additions and 489 deletions

View File

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2013-2019 Will Scullin Copyright (c) 2010-2021 Will Scullin and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in this software and associated documentation files (the "Software"), to deal in

View File

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- <!--
Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com> Copyright 2010-2021 Will Scullin and contributors
Permission to use, copy, modify, distribute, and sell this software and its Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that documentation for any purpose is hereby granted without fee, provided that

View File

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- <!--
Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com> Copyright 2010-2021 Will Scullin and contributors
Permission to use, copy, modify, distribute, and sell this software and its Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that documentation for any purpose is hereby granted without fee, provided that

View File

@ -1,5 +1,3 @@
/* Copyright 2010-2019 Will Scullin */
#header { #header {
width: 580px; width: 580px;
margin: auto; margin: auto;

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import CPU6502 from './cpu6502'; import CPU6502 from './cpu6502';
import { Card, Memory, MemoryPages, TapeData, byte, Restorable } from './types'; import { Card, Memory, MemoryPages, TapeData, byte, Restorable } from './types';
import { debug, garbage } from './util'; import { debug, garbage } from './util';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { byte, Color, memory, MemoryPages, rom } from './types'; import { byte, Color, memory, MemoryPages, rom } from './types';
import { allocMemPages } from './util'; import { allocMemPages } from './util';
import { import {

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import type { byte, Card, Restorable } from '../types'; import type { byte, Card, Restorable } from '../types';
import { debug, toHex } from '../util'; import { debug, toHex } from '../util';
import { rom as readOnlyRom } from '../roms/cards/cffa'; import { rom as readOnlyRom } from '../roms/cards/cffa';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { base64_encode} from '../base64'; import { base64_encode} from '../base64';
import type { import type {
byte, byte,

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import RAM, { RAMState } from '../ram'; import RAM, { RAMState } from '../ram';
import { debug } from '../util'; import { debug } from '../util';
import { Card, Memory, byte, Restorable } from '../types'; import { Card, Memory, byte, Restorable } from '../types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug } from '../util'; import { debug } from '../util';
export default function NoSlotClock(rom) export default function NoSlotClock(rom)

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug } from '../util'; import { debug } from '../util';
import { Card, Restorable, byte } from '../types'; import { Card, Restorable, byte } from '../types';
import { rom } from '../roms/cards/parallel'; import { rom } from '../roms/cards/parallel';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { allocMem, debug } from '../util'; import { allocMem, debug } from '../util';
import { Card, Restorable, byte, memory } from '../types'; import { Card, Restorable, byte, memory } from '../types';
import { rom } from '../roms/cards/ramfactor'; import { rom } from '../roms/cards/ramfactor';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug, toHex } from '../util'; import { debug, toHex } from '../util';
import { rom as smartPortRom } from '../roms/cards/smartport'; import { rom as smartPortRom } from '../roms/cards/smartport';
import { Card, Restorable, byte, word, rom } from '../types'; import { Card, Restorable, byte, word, rom } from '../types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug, toHex } from '../util'; import { debug, toHex } from '../util';
import { Card, Restorable, byte } from '../types'; import { Card, Restorable, byte } from '../types';
import { rom } from '../roms/cards/thunderclock'; import { rom } from '../roms/cards/thunderclock';

View File

@ -1,14 +1,3 @@
/* Copyright 2017 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { allocMemPages, debug } from '../util'; import { allocMemPages, debug } from '../util';
import { Card, Restorable, byte, Color, memory, word } from '../types'; import { Card, Restorable, byte, Color, memory, word } from '../types';
import { ROM, VIDEO_ROM } from '../roms/cards/videoterm'; import { ROM, VIDEO_ROM } from '../roms/cards/videoterm';

View File

@ -1,15 +1,3 @@
/*
* Copyright 2010-2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { Memory, MemoryPages, byte, word } from './types'; import { Memory, MemoryPages, byte, word } from './types';
import { debug, toHex } from './util'; import { debug, toHex } from './util';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import DOS from './do'; import DOS from './do';
import Nibble from './nib'; import Nibble from './nib';
import ProDOS from './po'; import ProDOS from './po';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { DiskOptions, BlockDisk, ENCODING_BLOCK } from './types'; import { DiskOptions, BlockDisk, ENCODING_BLOCK } from './types';
/** /**

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { explodeSector13, D13O } from './format_utils'; import { explodeSector13, D13O } from './format_utils';
import { NibbleDisk, DiskOptions, ENCODING_NIBBLE } from './types'; import { NibbleDisk, DiskOptions, ENCODING_NIBBLE } from './types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { explodeSector16, DO } from './format_utils'; import { explodeSector16, DO } from './format_utils';
import { bytify } from '../util'; import { bytify } from '../util';
import { byte } from '../types'; import { byte } from '../types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { bit, byte, memory } from '../types'; import { bit, byte, memory } from '../types';
import { base64_decode, base64_encode } from '../base64'; import { base64_decode, base64_encode } from '../base64';
import { bytify, debug, toHex } from '../util'; import { bytify, debug, toHex } from '../util';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { NibbleDisk, DiskOptions, ENCODING_NIBBLE } from './types'; import { NibbleDisk, DiskOptions, ENCODING_NIBBLE } from './types';
import { memory } from '../types'; import { memory } from '../types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { explodeSector16, PO } from './format_utils'; import { explodeSector16, PO } from './format_utils';
import { bytify } from '../util'; import { bytify } from '../util';
import type { byte } from '../types'; import type { byte } from '../types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
export function BitMap(volume) { export function BitMap(volume) {
var vdh = volume.vdh(); var vdh = volume.vdh();
var blocks = volume.blocks(); var blocks = volume.blocks();

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
export var BLOCK_SIZE = 512; export var BLOCK_SIZE = 512;
export var STORAGE_TYPES = { export var STORAGE_TYPES = {

View File

@ -1,15 +1,4 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { dateToUint32, readFileName, writeFileName, uint32ToDate } from './utils'; import { dateToUint32, readFileName, writeFileName, uint32ToDate } from './utils';
import { readEntries, writeEntries } from './file_entry'; import { readEntries, writeEntries } from './file_entry';
import { STORAGE_TYPES, ACCESS_TYPES } from './constants'; import { STORAGE_TYPES, ACCESS_TYPES } from './constants';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { dateToUint32, readFileName, writeFileName, uint32ToDate } from './utils'; import { dateToUint32, readFileName, writeFileName, uint32ToDate } from './utils';
import { STORAGE_TYPES, ACCESS_TYPES } from './constants'; import { STORAGE_TYPES, ACCESS_TYPES } from './constants';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { VDH } from './vdh'; import { VDH } from './vdh';
import { BitMap } from './bit_map'; import { BitMap } from './bit_map';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { BLOCK_SIZE, STORAGE_TYPES } from './constants'; import { BLOCK_SIZE, STORAGE_TYPES } from './constants';
export function SaplingFile (volume, fileEntry) { export function SaplingFile (volume, fileEntry) {

View File

@ -1,13 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { STORAGE_TYPES } from './constants'; import { STORAGE_TYPES } from './constants';
export function SeedlingFile (volume, fileEntry) { export function SeedlingFile (volume, fileEntry) {

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { BLOCK_SIZE, STORAGE_TYPES } from './constants'; import { BLOCK_SIZE, STORAGE_TYPES } from './constants';
export function TreeFile (volume, fileEntry) { export function TreeFile (volume, fileEntry) {

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug } from '../../util'; import { debug } from '../../util';
import { STORAGE_TYPES } from './constants'; import { STORAGE_TYPES } from './constants';
import { Directory } from './directory'; import { Directory } from './directory';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { dateToUint32, readFileName, writeFileName, uint32ToDate } from './utils'; import { dateToUint32, readFileName, writeFileName, uint32ToDate } from './utils';
import { readEntries, writeEntries } from './file_entry'; import { readEntries, writeEntries } from './file_entry';
import { STORAGE_TYPES, ACCESS_TYPES } from './constants'; import { STORAGE_TYPES, ACCESS_TYPES } from './constants';

View File

@ -1,14 +1,3 @@
/* Copyright 2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import type { byte, memory, MemberOf } from '../types'; import type { byte, memory, MemberOf } from '../types';
import type { GamepadConfiguration } from '../ui/types'; import type { GamepadConfiguration } from '../ui/types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug, toHex } from '../util'; import { debug, toHex } from '../util';
import { bit, byte, word } from '../types'; import { bit, byte, word } from '../types';
import { grabNibble } from './format_utils'; import { grabNibble } from './format_utils';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { byte, Color, memory, MemoryPages, rom } from './types'; import { byte, Color, memory, MemoryPages, rom } from './types';
import { allocMemPages } from './util'; import { allocMemPages } from './util';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import CPU6502 from './cpu6502'; import CPU6502 from './cpu6502';
import RAM, { RAMState } from './ram'; import RAM, { RAMState } from './ram';
import ROM, { ROMState } from './roms/rom'; import ROM, { ROMState } from './roms/rom';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
const havePrefs = typeof window.localStorage !== 'undefined'; const havePrefs = typeof window.localStorage !== 'undefined';
export default class Prefs { export default class Prefs {

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { byte, memory, Memory, Restorable } from './types'; import { byte, memory, Memory, Restorable } from './types';
import { allocMemPages } from './util'; import { allocMemPages } from './util';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { BOOLEAN_OPTION, OptionHandler } from './options_modal'; import { BOOLEAN_OPTION, OptionHandler } from './options_modal';
import Apple2IO from '../apple2io'; import Apple2IO from '../apple2io';
import { debug } from '../util'; import { debug } from '../util';

View File

@ -1,14 +1,3 @@
/* Copyright 2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
declare global { declare global {
interface AudioWorkletProcessor { interface AudioWorkletProcessor {
readonly port: MessagePort; readonly port: MessagePort;

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import Apple2IO from '../apple2io'; import Apple2IO from '../apple2io';
import { BUTTON, ButtonType, GamepadConfiguration } from './types'; import { BUTTON, ButtonType, GamepadConfiguration } from './types';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { byte, DeepMemberOf, KnownKeys } from '../types'; import { byte, DeepMemberOf, KnownKeys } from '../types';
import Apple2IO from '../apple2io'; import Apple2IO from '../apple2io';
import CPU6502 from '../cpu6502'; import CPU6502 from '../cpu6502';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { byte } from '../types'; import { byte } from '../types';
/** /**

View File

@ -1,15 +1,4 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { TapeData } from '../types'; import { TapeData } from '../types';
import Apple2IO from '../apple2io'; import Apple2IO from '../apple2io';
import { debug } from '../util'; import { debug } from '../util';

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import type { KnownKeys } from '../types'; import type { KnownKeys } from '../types';
export const BUTTON = { export const BUTTON = {

View File

@ -1,14 +1,3 @@
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided ' as is' without express or
* implied warranty.
*/
import { byte, memory, word } from './types'; import { byte, memory, word } from './types';
/*eslint no-console: 0*/ /*eslint no-console: 0*/

View File

@ -1,14 +1,3 @@
/* Copyright 2021 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
import { debug } from '../js/util'; import { debug } from '../js/util';
import { jsonDecode } from '../js/formats/format_utils'; import { jsonDecode } from '../js/formats/format_utils';
import { import {