From fffe6ed2df2dbbbf493c7959b64ad3f90d107d82 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 2 Jul 2019 13:59:30 -0400 Subject: [PATCH] Chops the Macintosh down to a single drive to aid in development. --- Machines/Apple/Macintosh/Macintosh.cpp | 2 +- Machines/Apple/Macintosh/SonyDrive.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Machines/Apple/Macintosh/Macintosh.cpp b/Machines/Apple/Macintosh/Macintosh.cpp index 531111246..20b472e09 100644 --- a/Machines/Apple/Macintosh/Macintosh.cpp +++ b/Machines/Apple/Macintosh/Macintosh.cpp @@ -106,7 +106,7 @@ template class ConcreteMachin // Attach the drives to the IWM. iwm_.iwm.set_drive(0, &drives_[0]); - iwm_.iwm.set_drive(1, &drives_[1]); +// iwm_.iwm.set_drive(1, &drives_[1]); // The Mac runs at 7.8336mHz. set_clock_rate(double(CLOCK_RATE)); diff --git a/Machines/Apple/Macintosh/SonyDrive.cpp b/Machines/Apple/Macintosh/SonyDrive.cpp index 004fae9e0..90a7c245e 100644 --- a/Machines/Apple/Macintosh/SonyDrive.cpp +++ b/Machines/Apple/Macintosh/SonyDrive.cpp @@ -25,7 +25,7 @@ void SonyDrive::did_step(Storage::Disk::HeadPosition to_position) { /* Numbers below cribbed from the Kryoflux forums. */ - printf("Head moved to %d\n", to_position.as_int()); +// printf("Head moved to %d\n", to_position.as_int()); const int zone = to_position.as_int() >> 4; switch(zone) { case 0: set_rotation_speed(393.3807f); break;