1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-25 18:30:21 +00:00

Ensured GCR parser spins the disk.

This commit is contained in:
Thomas Harte 2017-05-16 20:53:06 -04:00
parent 67ec0b9e6c
commit df4d4467b3

View File

@ -24,6 +24,7 @@ class CommodoreGCRParser: public Storage::Disk::Controller {
CommodoreGCRParser() : Storage::Disk::Controller(4000000, 1, 300), shift_register_(0), track_(1) { CommodoreGCRParser() : Storage::Disk::Controller(4000000, 1, 300), shift_register_(0), track_(1) {
drive.reset(new Storage::Disk::Drive); drive.reset(new Storage::Disk::Drive);
set_drive(drive); set_drive(drive);
set_motor_on(true);
} }
struct Sector { struct Sector {