apple2js/js/roms/cards/parallel.ts
Ian Flanigan 910238bf63
Convert cards/disk2.js to Typescript (#54)
* Convert `cards/disk2.js` to Typescript

This is mostly a straightforward conversion of `cards/disk2.js` to
Typescript, with the following exceptions:

*   `setState()` did not restore the drive light state correctly
    because the callback was called with the old `on` value.

*   `setPhase()` did not work for WOZ images.

*   `getBinary()` did not work for `nib` files.

*   `getBase64()` did not work for `nib` files and maybe didn't work
    right at all.

Even with these fixes, local storage still doesn't work correctly.

I have also added several TODOs where methods don't support WOZ disks.

* Convert most uses of `memory` to `Uint8Array`

There are many places in the existing code where we use `Uint8Array`
directly. This change merely makes the `memory` type equivalent to
`Uint8Array`.

This change also changes most ROM data to be read-only in Typescript
to ensure that it is not modified by mistake. This can't be done just
by applying `as const` to the declaration because `Uint8Array`s are
can not be expressed as literals. Instead, we create a new type,
`ReadonlyUint8Array` that drops the mutation methods and makes indexed
access read-only.

See
https://www.growingwiththeweb.com/2020/10/typescript-readonly-typed-arrays.html
for details.

* Tighten types and document `disk2.ts`

While trying to understand the Disk ][ emulation, I tighted the types
and documented the parts that I could, including references to other
sources, like _Understanding the Apple //e_ by Jim Sather.

The one functional change is the addition of the P6 ROM of DOS 3.2 and
earlier. This is automatically selected if the card is initialized for
13 sector disks.
2021-02-07 20:50:50 -08:00

37 lines
1.5 KiB
TypeScript

import { ReadonlyUint8Array } from '../../types';
export const rom = new Uint8Array([
0x18,0xb0,0x38,0x48,0x8a,0x48,0x98,0x48,
0x08,0x78,0x20,0x58,0xff,0xba,0x68,0x68,
0x68,0x68,0xa8,0xca,0x9a,0x68,0x28,0xaa,
0x90,0x38,0xbd,0xb8,0x05,0x10,0x19,0x98,
0x29,0x7f,0x49,0x30,0xc9,0x0a,0x90,0x3b,
0xc9,0x78,0xb0,0x29,0x49,0x3d,0xf0,0x21,
0x98,0x29,0x9f,0x9d,0x38,0x06,0x90,0x7e,
0xbd,0xb8,0x06,0x30,0x14,0xa5,0x24,0xdd,
0x38,0x07,0xb0,0x0d,0xc9,0x11,0xb0,0x09,
0x09,0xf0,0x3d,0x38,0x07,0x65,0x24,0x85,
0x24,0x4a,0x38,0xb0,0x6d,0x18,0x6a,0x3d,
0xb8,0x06,0x90,0x02,0x49,0x81,0x9d,0xb8,
0x06,0xd0,0x53,0xa0,0x0a,0x7d,0x38,0x05,
0x88,0xd0,0xfa,0x9d,0xb8,0x04,0x9d,0x38,
0x05,0x38,0xb0,0x43,0xc5,0x24,0x90,0x3a,
0x68,0xa8,0x68,0xaa,0x68,0x4c,0xf0,0xfd,
0x90,0xfe,0xb0,0xfe,0x99,0x80,0xc0,0x90,
0x37,0x49,0x07,0xa8,0x49,0x0a,0x0a,0xd0,
0x06,0xb8,0x85,0x24,0x9d,0x38,0x07,0xbd,
0xb8,0x06,0x4a,0x70,0x02,0xb0,0x23,0x0a,
0x0a,0xa9,0x27,0xb0,0xcf,0xbd,0x38,0x07,
0xfd,0xb8,0x04,0xc9,0xf8,0x90,0x03,0x69,
0x27,0xac,0xa9,0x00,0x85,0x24,0x18,0x7e,
0xb8,0x05,0x68,0xa8,0x68,0xaa,0x68,0x60,
0x90,0x27,0xb0,0x00,0x10,0x11,0xa9,0x89,
0x9d,0x38,0x06,0x9d,0xb8,0x06,0xa9,0x28,
0x9d,0xb8,0x04,0xa9,0x02,0x85,0x36,0x98,
0x5d,0x38,0x06,0x0a,0xf0,0x90,0x5e,0xb8,
0x05,0x98,0x48,0x8a,0x0a,0x0a,0x0a,0x0a,
0xa8,0xbd,0x38,0x07,0xc5,0x24,0x68,0xb0,
0x05,0x48,0x29,0x80,0x09,0x20,0x2c,0x58,
0xff,0xf0,0x03,0xfe,0x38,0x07,0x70,0x84
]) as ReadonlyUint8Array;