mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
910238bf63
* 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.
263 lines
11 KiB
TypeScript
263 lines
11 KiB
TypeScript
import { ReadonlyUint8Array } from '../types';
|
|
|
|
const pigfont_charset = new Uint8Array([
|
|
0x00,0x1c,0x22,0x2a,0x2e,0x20,0x1e,0x00,
|
|
0x0c,0x12,0x21,0x3f,0x21,0x21,0x00,0x00,
|
|
0x3e,0x11,0x1e,0x11,0x11,0x3e,0x00,0x00,
|
|
0x1e,0x21,0x20,0x20,0x21,0x1e,0x00,0x00,
|
|
0x3e,0x01,0x11,0x11,0x11,0x3e,0x00,0x00,
|
|
0x3f,0x00,0x3c,0x20,0x20,0x3f,0x00,0x00,
|
|
0x3f,0x00,0x3c,0x20,0x20,0x20,0x00,0x00,
|
|
0x1e,0x20,0x27,0x21,0x21,0x1e,0x00,0x00,
|
|
0x21,0x21,0x7f,0x21,0x21,0x21,0x00,0x00,
|
|
0x0e,0x04,0x04,0x04,0x04,0x0e,0x00,0x00,
|
|
0x07,0x02,0x02,0x02,0x22,0x1c,0x00,0x00,
|
|
0x22,0x24,0x38,0x24,0x22,0x21,0x00,0x00,
|
|
0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,
|
|
0x21,0x33,0x2d,0x2d,0x21,0x21,0x00,0x00,
|
|
0x21,0x31,0x29,0x25,0x23,0x21,0x00,0x00,
|
|
0x1e,0x01,0x21,0x21,0x21,0x1e,0x00,0x00,
|
|
0x3e,0x01,0x3e,0x20,0x20,0x20,0x00,0x00,
|
|
0x1e,0x01,0x21,0x25,0x22,0x1d,0x00,0x00,
|
|
0x3e,0x01,0x3e,0x24,0x22,0x21,0x00,0x00,
|
|
0x1e,0x20,0x1e,0x01,0x21,0x1e,0x00,0x00,
|
|
0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,
|
|
0x21,0x21,0x21,0x21,0x21,0x1e,0x00,0x00,
|
|
0x21,0x21,0x12,0x12,0x0c,0x0c,0x00,0x00,
|
|
0x21,0x21,0x2d,0x2d,0x33,0x21,0x00,0x00,
|
|
0x21,0x12,0x0c,0x12,0x21,0x21,0x00,0x00,
|
|
0x41,0x22,0x1c,0x08,0x08,0x08,0x00,0x00,
|
|
0x3f,0x01,0x06,0x18,0x20,0x3f,0x00,0x00,
|
|
0x3e,0x30,0x30,0x30,0x30,0x3e,0x00,0x00,
|
|
0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
|
|
0x3e,0x06,0x06,0x06,0x06,0x3e,0x00,0x00,
|
|
0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x0c,0x0c,0x0c,0x0c,0x00,0x0c,0x00,0x00,
|
|
0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,
|
|
0x12,0x3f,0x12,0x3f,0x12,0x00,0x00,0x00,
|
|
0x0a,0x1f,0x20,0x1e,0x01,0x3e,0x14,0x00,
|
|
0x31,0x32,0x04,0x08,0x13,0x23,0x00,0x00,
|
|
0x18,0x24,0x18,0x25,0x22,0x1d,0x00,0x00,
|
|
0x06,0x06,0x0c,0x00,0x00,0x00,0x00,0x00,
|
|
0x02,0x04,0x08,0x08,0x04,0x02,0x00,0x00,
|
|
0x10,0x08,0x04,0x04,0x08,0x10,0x00,0x00,
|
|
0x00,0x04,0x15,0x0e,0x15,0x04,0x00,0x00,
|
|
0x00,0x0c,0x0c,0x3f,0x0c,0x0c,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x18,
|
|
0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,
|
|
0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
|
|
0x1e,0x03,0x25,0x29,0x31,0x1e,0x00,0x00,
|
|
0x04,0x0c,0x14,0x04,0x04,0x1f,0x00,0x00,
|
|
0x1e,0x21,0x06,0x18,0x20,0x3f,0x00,0x00,
|
|
0x1e,0x21,0x0e,0x01,0x21,0x1e,0x00,0x00,
|
|
0x02,0x06,0x0a,0x12,0x3f,0x02,0x00,0x00,
|
|
0x3f,0x00,0x3e,0x01,0x21,0x1e,0x00,0x00,
|
|
0x1e,0x20,0x3e,0x21,0x21,0x1e,0x00,0x00,
|
|
0x3f,0x21,0x02,0x04,0x08,0x08,0x00,0x00,
|
|
0x1e,0x21,0x1e,0x21,0x21,0x1e,0x00,0x00,
|
|
0x1e,0x21,0x1f,0x01,0x02,0x1c,0x00,0x00,
|
|
0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x00,0x00,
|
|
0x00,0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x18,
|
|
0x00,0x03,0x0c,0x30,0x0c,0x03,0x00,0x00,
|
|
0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x00,
|
|
0x00,0x30,0x0c,0x03,0x0c,0x30,0x00,0x00,
|
|
0x1e,0x21,0x06,0x08,0x00,0x08,0x00,0x00,
|
|
0x9e,0xa1,0xad,0xae,0xa0,0x9f,0x80,0x80,
|
|
0x8c,0x92,0xa1,0xbf,0xa1,0xa1,0x80,0x80,
|
|
0xbe,0x81,0x9e,0x91,0x91,0xbe,0x80,0x80,
|
|
0x9e,0xa1,0xa0,0xa0,0xa1,0x9e,0x80,0x80,
|
|
0xbe,0x81,0x91,0x91,0x91,0xbe,0x80,0x80,
|
|
0xbf,0x80,0xbc,0xa0,0xa0,0xbf,0x80,0x80,
|
|
0xbf,0x80,0xbc,0xa0,0xa0,0xa0,0x80,0x80,
|
|
0x9e,0xa0,0xa7,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xa1,0xa1,0xbf,0xa1,0xa1,0xa1,0x80,0x80,
|
|
0x8e,0x84,0x84,0x84,0x84,0x8e,0x80,0x80,
|
|
0x87,0x82,0x82,0x82,0xa2,0x9c,0x80,0x80,
|
|
0xa2,0xa4,0xb8,0xa4,0xa2,0xa1,0x80,0x80,
|
|
0xa0,0xa0,0xa0,0xa0,0xa0,0xbf,0x80,0x80,
|
|
0xa1,0xb3,0xad,0xad,0xa1,0xa1,0x80,0x80,
|
|
0xa1,0xb1,0xa9,0xa5,0xa3,0xa1,0x80,0x80,
|
|
0x9e,0x81,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xbe,0x81,0xbe,0xa0,0xa0,0xa0,0x80,0x80,
|
|
0x9e,0x81,0xa1,0xa5,0xa2,0x9d,0x80,0x80,
|
|
0xbe,0x81,0xbe,0xa4,0xa2,0xa1,0x80,0x80,
|
|
0x9e,0xa0,0x9e,0x81,0xa1,0x9e,0x80,0x80,
|
|
0xff,0x88,0x88,0x88,0x88,0x88,0x80,0x80,
|
|
0xa1,0xa1,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xa1,0xa1,0x92,0x92,0x8c,0x8c,0x80,0x80,
|
|
0xa1,0xa1,0xad,0xad,0xb3,0xa1,0x80,0x80,
|
|
0xa1,0x92,0x8c,0x92,0xa1,0xa1,0x80,0x80,
|
|
0xc1,0xa2,0x9c,0x88,0x88,0x88,0x80,0x80,
|
|
0xbf,0x81,0x86,0x98,0xa0,0xbf,0x80,0x80,
|
|
0xbe,0xb0,0xb0,0xb0,0xb0,0xbe,0x80,0x80,
|
|
0x80,0xa0,0x90,0x88,0x84,0x82,0x80,0x80,
|
|
0xbe,0x86,0x86,0x86,0x86,0xbe,0x80,0x80,
|
|
0x8c,0x92,0xa1,0x80,0x80,0x80,0x80,0x80,
|
|
0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x80,
|
|
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
|
|
0x8c,0x8c,0x8c,0x8c,0x80,0x8c,0x80,0x80,
|
|
0xb3,0xb3,0xb3,0x80,0x80,0x80,0x80,0x80,
|
|
0x92,0xbf,0x92,0xbf,0x92,0x80,0x80,0x80,
|
|
0x8a,0x9f,0xa0,0x9e,0x81,0xbe,0x94,0x80,
|
|
0xb1,0xb2,0x84,0x88,0x93,0xa3,0x80,0x80,
|
|
0x98,0xa4,0x98,0xa5,0xa2,0x9d,0x80,0x80,
|
|
0x86,0x86,0x8c,0x80,0x80,0x80,0x80,0x80,
|
|
0x82,0x84,0x88,0x88,0x84,0x82,0x80,0x80,
|
|
0x90,0x88,0x84,0x84,0x88,0x90,0x80,0x80,
|
|
0x80,0x84,0x95,0x8e,0x95,0x84,0x80,0x80,
|
|
0x80,0x8c,0x8c,0xbf,0x8c,0x8c,0x80,0x80,
|
|
0x80,0x80,0x80,0x80,0x80,0x8c,0x8c,0x98,
|
|
0x80,0x80,0x80,0xbf,0x80,0x80,0x80,0x80,
|
|
0x80,0x80,0x80,0x80,0x8c,0x8c,0x80,0x80,
|
|
0x80,0x82,0x84,0x88,0x90,0xa0,0x80,0x80,
|
|
0x9e,0x83,0xa5,0xa9,0xb1,0x9e,0x80,0x80,
|
|
0x84,0x8c,0x94,0x84,0x84,0x9f,0x80,0x80,
|
|
0x9e,0xa1,0x86,0x98,0xa0,0xbf,0x80,0x80,
|
|
0x9e,0xa1,0x8e,0x81,0xa1,0x9e,0x80,0x80,
|
|
0x82,0x86,0x8a,0x92,0xbf,0x82,0x80,0x80,
|
|
0xbf,0x80,0xbe,0x81,0xa1,0x9e,0x80,0x80,
|
|
0x9e,0xa0,0xbe,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xbf,0xa1,0x82,0x84,0x88,0x88,0x80,0x80,
|
|
0x9e,0xa1,0x9e,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0x9e,0xa1,0x9f,0x81,0x82,0x9c,0x80,0x80,
|
|
0x80,0x8c,0x8c,0x80,0x8c,0x8c,0x80,0x80,
|
|
0x80,0x80,0x8c,0x8c,0x80,0x8c,0x8c,0x98,
|
|
0x80,0x83,0x8c,0xb0,0x8c,0x83,0x80,0x80,
|
|
0x80,0x80,0xbe,0x80,0xbe,0x80,0x80,0x80,
|
|
0x80,0xb0,0x8c,0x83,0x8c,0xb0,0x80,0x80,
|
|
0x9e,0xa1,0x86,0x88,0x80,0x88,0x80,0x80,
|
|
0x1e,0x21,0x2d,0x2e,0x20,0x1f,0x00,0x00,
|
|
0x0c,0x12,0x21,0x3f,0x21,0x21,0x00,0x00,
|
|
0x3e,0x01,0x1e,0x11,0x11,0x3e,0x00,0x00,
|
|
0x1e,0x21,0x20,0x20,0x21,0x1e,0x00,0x00,
|
|
0x3e,0x01,0x11,0x11,0x11,0x3e,0x00,0x00,
|
|
0x3f,0x00,0x3c,0x20,0x20,0x3f,0x00,0x00,
|
|
0x3f,0x00,0x3c,0x20,0x20,0x20,0x00,0x00,
|
|
0x1e,0x20,0x27,0x21,0x21,0x1e,0x00,0x00,
|
|
0x21,0x21,0x3f,0x21,0x21,0x21,0x00,0x00,
|
|
0x0e,0x04,0x04,0x04,0x04,0x0e,0x00,0x00,
|
|
0x07,0x02,0x02,0x02,0x22,0x1c,0x00,0x00,
|
|
0x22,0x24,0x38,0x24,0x22,0x21,0x00,0x00,
|
|
0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,
|
|
0x21,0x33,0x2d,0x2d,0x21,0x21,0x00,0x00,
|
|
0x21,0x31,0x29,0x25,0x23,0x21,0x00,0x00,
|
|
0x1e,0x01,0x21,0x21,0x21,0x1e,0x00,0x00,
|
|
0x3e,0x01,0x3e,0x20,0x20,0x20,0x00,0x00,
|
|
0x1e,0x01,0x21,0x25,0x22,0x1d,0x00,0x00,
|
|
0x3e,0x01,0x3e,0x24,0x22,0x21,0x00,0x00,
|
|
0x1e,0x20,0x1e,0x01,0x21,0x1e,0x00,0x00,
|
|
0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,
|
|
0x21,0x21,0x21,0x21,0x21,0x1e,0x00,0x00,
|
|
0x21,0x21,0x12,0x12,0x0c,0x0c,0x00,0x00,
|
|
0x21,0x21,0x2d,0x2d,0x33,0x21,0x00,0x00,
|
|
0x21,0x12,0x0c,0x12,0x21,0x21,0x00,0x00,
|
|
0x41,0x22,0x1c,0x08,0x08,0x08,0x00,0x00,
|
|
0x3f,0x01,0x06,0x18,0x20,0x3f,0x00,0x00,
|
|
0x3e,0x30,0x30,0x30,0x30,0x3e,0x00,0x00,
|
|
0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
|
|
0x3e,0x06,0x06,0x06,0x06,0x3e,0x00,0x00,
|
|
0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x0c,0x0c,0x0c,0x0c,0x00,0x0c,0x00,0x00,
|
|
0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,
|
|
0x12,0x3f,0x12,0x3f,0x12,0x00,0x00,0x00,
|
|
0x0a,0x1f,0x20,0x1e,0x01,0x3e,0x14,0x00,
|
|
0x31,0x32,0x04,0x08,0x13,0x23,0x00,0x00,
|
|
0x18,0x24,0x18,0x25,0x22,0x1d,0x00,0x00,
|
|
0x06,0x06,0x0c,0x00,0x00,0x00,0x00,0x00,
|
|
0x02,0x04,0x08,0x08,0x04,0x02,0x00,0x00,
|
|
0x10,0x08,0x04,0x04,0x08,0x10,0x00,0x00,
|
|
0x00,0x04,0x15,0x0e,0x15,0x04,0x00,0x00,
|
|
0x00,0x0c,0x0c,0x3f,0x0c,0x0c,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x18,
|
|
0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,
|
|
0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
|
|
0x1e,0x03,0x25,0x29,0x31,0x1e,0x00,0x00,
|
|
0x04,0x0c,0x14,0x04,0x04,0x1f,0x00,0x00,
|
|
0x1e,0x21,0x06,0x18,0x20,0x3f,0x00,0x00,
|
|
0x1e,0x21,0x0e,0x01,0x21,0x1e,0x00,0x00,
|
|
0x02,0x06,0x0a,0x12,0x3f,0x02,0x00,0x00,
|
|
0x3f,0x00,0x3e,0x01,0x21,0x1e,0x00,0x00,
|
|
0x1e,0x20,0x3e,0x21,0x21,0x1e,0x00,0x00,
|
|
0x3f,0x21,0x02,0x04,0x08,0x08,0x00,0x00,
|
|
0x1e,0x21,0x1e,0x21,0x21,0x1e,0x00,0x00,
|
|
0x1e,0x21,0x1f,0x01,0x02,0x1c,0x00,0x00,
|
|
0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x00,0x00,
|
|
0x00,0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x18,
|
|
0x00,0x03,0x0c,0x30,0x0c,0x03,0x00,0x00,
|
|
0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x00,
|
|
0x00,0x30,0x0c,0x03,0x0c,0x30,0x00,0x00,
|
|
0x1e,0x21,0x06,0x08,0x00,0x08,0x00,0x00,
|
|
0x9e,0xa1,0xad,0xae,0xa0,0x9f,0x80,0x80,
|
|
0x8c,0x92,0xa1,0xbf,0xa1,0xa1,0x80,0x80,
|
|
0xbe,0x81,0x9e,0x91,0x91,0xbe,0x80,0x80,
|
|
0x9e,0xa1,0xa0,0xa0,0xa1,0x9e,0x80,0x80,
|
|
0xbe,0x81,0x91,0x91,0x91,0xbe,0x80,0x80,
|
|
0xbf,0x80,0xbc,0xa0,0xa0,0xbf,0x80,0x80,
|
|
0xbf,0x80,0xbc,0xa0,0xa0,0xa0,0x80,0x80,
|
|
0x9e,0xa0,0xa7,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xa1,0xa1,0xbf,0xa1,0xa1,0xa1,0x80,0x80,
|
|
0x8e,0x84,0x84,0x84,0x84,0x8e,0x80,0x80,
|
|
0x87,0x82,0x82,0x82,0xa2,0x9c,0x80,0x80,
|
|
0xa2,0xa4,0xb8,0xa4,0xa2,0xa1,0x80,0x80,
|
|
0xa0,0xa0,0xa0,0xa0,0xa0,0xbf,0x80,0x80,
|
|
0xa1,0xb3,0xad,0xad,0xa1,0xa1,0x80,0x80,
|
|
0xa1,0xb1,0xa9,0xa5,0xa3,0xa1,0x80,0x80,
|
|
0x9e,0x81,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xbe,0x81,0xbe,0xa0,0xa0,0xa0,0x80,0x80,
|
|
0x9e,0x81,0xa1,0xa5,0xa2,0x9d,0x80,0x80,
|
|
0xbe,0x81,0xbe,0xa4,0xa2,0xa1,0x80,0x80,
|
|
0x9e,0xa0,0x9e,0x81,0xa1,0x9e,0x80,0x80,
|
|
0xff,0x88,0x88,0x88,0x88,0x88,0x80,0x80,
|
|
0xa1,0xa1,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0xa1,0xa1,0x92,0x92,0x8c,0x8c,0x80,0x80,
|
|
0xa1,0xa1,0xad,0xad,0xb3,0xa1,0x80,0x80,
|
|
0xa1,0x92,0x8c,0x92,0xa1,0xa1,0x80,0x80,
|
|
0xc1,0xa2,0x9c,0x88,0x88,0x88,0x80,0x80,
|
|
0xbf,0x81,0x86,0x98,0xa0,0xbf,0x80,0x80,
|
|
0xbe,0xb0,0xb0,0xb0,0xb0,0xbe,0x80,0x80,
|
|
0x80,0xa0,0x90,0x88,0x84,0x82,0x80,0x80,
|
|
0xbe,0x86,0x86,0x86,0x86,0xbe,0x80,0x80,
|
|
0x8c,0x92,0xa1,0x80,0x80,0x80,0x80,0x80,
|
|
0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x80,
|
|
0x88,0x84,0x82,0x80,0x80,0x80,0x80,0x80,
|
|
0x80,0x9c,0x82,0x9e,0xa2,0x9d,0x80,0x80,
|
|
0xa0,0xae,0xb1,0xa1,0xb1,0xae,0x80,0x80,
|
|
0x80,0x9e,0xa0,0xa0,0xa0,0x9e,0x80,0x80,
|
|
0x81,0x9d,0xa3,0xa1,0xa3,0x9d,0x80,0x80,
|
|
0x80,0x9e,0xa1,0xbf,0xa0,0x9f,0x80,0x80,
|
|
0x8e,0x90,0xbc,0x90,0x90,0x90,0x80,0x80,
|
|
0x80,0x9d,0xa3,0xa3,0x9d,0x81,0xa1,0x9e,
|
|
0xa0,0xae,0xb1,0xa1,0xa1,0xa1,0x80,0x80,
|
|
0x84,0x80,0x8c,0x84,0x84,0x8e,0x80,0x80,
|
|
0x82,0x80,0x86,0x82,0x82,0x82,0xa2,0x9c,
|
|
0xa0,0xa2,0xa4,0xa8,0xb4,0xa2,0x80,0x80,
|
|
0x8c,0x84,0x84,0x84,0x84,0x8e,0x80,0x80,
|
|
0x80,0xaa,0x95,0x95,0x95,0x95,0x80,0x80,
|
|
0x80,0xae,0x91,0x91,0x91,0x91,0x80,0x80,
|
|
0x80,0x9e,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
|
|
0x80,0xae,0xb1,0xb1,0xae,0xa0,0xa0,0xa0,
|
|
0x80,0x9d,0xa3,0xa3,0x9d,0x81,0x81,0x81,
|
|
0x80,0xaf,0xb0,0xa0,0xa0,0xa0,0x80,0x80,
|
|
0x80,0x9e,0xa0,0x9e,0x81,0xbe,0x80,0x80,
|
|
0x90,0xbe,0x90,0x90,0x91,0x8e,0x80,0x80,
|
|
0x80,0xa2,0xa2,0xa2,0xa2,0x9c,0x80,0x80,
|
|
0x80,0xa1,0xa1,0xa1,0x92,0x8c,0x80,0x80,
|
|
0x80,0xa2,0xa2,0xaa,0xaa,0x94,0x80,0x80,
|
|
0x80,0xa1,0x92,0x8c,0x92,0xa1,0x80,0x80,
|
|
0x80,0xa1,0xa1,0xa3,0x9d,0x81,0xa1,0x9e,
|
|
0x80,0x9f,0x82,0x8c,0x90,0xbf,0x80,0x80,
|
|
0x8c,0x98,0xbc,0xf4,0xff,0xff,0xfb,0xbc,
|
|
0xe3,0xbe,0xaa,0xbe,0xeb,0xdd,0xc1,0xbe,
|
|
0x98,0x8c,0x9e,0x97,0xff,0xff,0xef,0x9e,
|
|
0xbe,0xc9,0xc9,0xbe,0x9c,0xc1,0xbe,0xc1,
|
|
0x84,0x88,0xb6,0xff,0xfc,0xfc,0xbe,0xb6,
|
|
]) as ReadonlyUint8Array;
|
|
|
|
export default pigfont_charset;
|