mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Organize imports in disk2.ts
The imports were automatically organized using VS Code's organize imports action.
This commit is contained in:
parent
4bbfac5a5a
commit
630a3e9d38
@ -3,32 +3,14 @@ import type {
|
|||||||
byte,
|
byte,
|
||||||
Card,
|
Card,
|
||||||
nibble,
|
nibble,
|
||||||
ReadonlyUint8Array,
|
ReadonlyUint8Array
|
||||||
} from '../types';
|
} from '../types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
FormatWorkerMessage,
|
DISK_PROCESSED, DriveNumber, DRIVE_NUMBERS, FloppyDisk,
|
||||||
FormatWorkerResponse,
|
FloppyFormat, FormatWorkerMessage,
|
||||||
NibbleFormat,
|
FormatWorkerResponse, isNibbleDisk, isNoFloppyDisk, isWozDisk, JSONDisk, MassStorage,
|
||||||
DISK_PROCESSED,
|
MassStorageData, NibbleDisk, NibbleFormat, NoFloppyDisk, NO_DISK, PROCESS_BINARY, PROCESS_JSON, PROCESS_JSON_DISK, SupportedSectors, WozDisk
|
||||||
DRIVE_NUMBERS,
|
|
||||||
DriveNumber,
|
|
||||||
JSONDisk,
|
|
||||||
PROCESS_BINARY,
|
|
||||||
PROCESS_JSON_DISK,
|
|
||||||
PROCESS_JSON,
|
|
||||||
MassStorage,
|
|
||||||
MassStorageData,
|
|
||||||
SupportedSectors,
|
|
||||||
FloppyDisk,
|
|
||||||
FloppyFormat,
|
|
||||||
WozDisk,
|
|
||||||
NibbleDisk,
|
|
||||||
isNibbleDisk,
|
|
||||||
isWozDisk,
|
|
||||||
NoFloppyDisk,
|
|
||||||
isNoFloppyDisk,
|
|
||||||
NO_DISK,
|
|
||||||
} from '../formats/types';
|
} from '../formats/types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@ -36,11 +18,11 @@ import {
|
|||||||
createDiskFromJsonDisk
|
createDiskFromJsonDisk
|
||||||
} from '../formats/create_disk';
|
} from '../formats/create_disk';
|
||||||
|
|
||||||
import { toHex } from '../util';
|
|
||||||
import { jsonDecode, jsonEncode, readSector, _D13O, _DO, _PO } from '../formats/format_utils';
|
import { jsonDecode, jsonEncode, readSector, _D13O, _DO, _PO } from '../formats/format_utils';
|
||||||
|
import { toHex } from '../util';
|
||||||
|
|
||||||
import { BOOTSTRAP_ROM_16, BOOTSTRAP_ROM_13 } from '../roms/cards/disk2';
|
|
||||||
import Apple2IO from '../apple2io';
|
import Apple2IO from '../apple2io';
|
||||||
|
import { BOOTSTRAP_ROM_13, BOOTSTRAP_ROM_16 } from '../roms/cards/disk2';
|
||||||
|
|
||||||
/** Softswitch locations */
|
/** Softswitch locations */
|
||||||
const LOC = {
|
const LOC = {
|
||||||
|
Loading…
Reference in New Issue
Block a user