apple2js/js/components/util
Ian Flanigan 8c2299e43e
Minor cleanup (#162)
* Split handling of nibble disks and WOZ disks into separate drivers

Before, the `DiskII` object took care of both nibble disks and WOZ
disks at the same time. This made it hard to see which code affected
which disks.

Now, nibble disks are handled by the `NibbleDiskDriver` and WOZ disks
are handled by the `WozDiskDriver`. This separation of code should
lead to easeir testing and, perhaps, faster evolution of disk
handling.

An upcoming change will move the `NibbleDiskDriver` and the
`WozDiskDriver` to separate files.

This passes all tests, compiles, and runs both nibble disks and WOZ
disks.

* Rename drive number fields/variables/parameters to `driveNo`

Before, the naming of fields, variables, and parameters that took
`DriveNumber` was very inconsistent. This changes them all to
`driveNo`.

* Organize imports in `disk2.ts`

The imports were automatically organized using VS Code's organize
imports action.
2022-10-01 11:08:58 -07:00
..
files.ts Minor cleanup (#162) 2022-10-01 11:08:58 -07:00
keyboard.ts Refactor key handling to use event.key (#152) 2022-08-24 18:23:22 -07:00
promises.ts Interruptable spawn (#132) 2022-06-12 09:06:58 -07:00
systems.ts Floppy controller refactorings 1 (#155) 2022-08-31 18:55:01 -07:00