1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-27 22:30:49 +00:00

Chops the Macintosh down to a single drive to aid in development.

This commit is contained in:
Thomas Harte 2019-07-02 13:59:30 -04:00
parent c4cbe9476c
commit fffe6ed2df
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ template <Analyser::Static::Macintosh::Target::Model model> 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));

View File

@ -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;