1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Fixed stepping delay.

This commit is contained in:
Thomas Harte 2016-09-24 20:16:23 -04:00
parent 53522e28e2
commit 7154e8986e

View File

@ -423,7 +423,7 @@ void WD1770::posit_event(Event type)
case 2: time_to_wait = 20; break; // 5 on a 1772
case 3: time_to_wait = 30; break; // 6 on a 1772
}
WAIT_FOR_TIME(command_ & 3);
WAIT_FOR_TIME(time_to_wait);
if(command_ >> 5) goto verify;
goto perform_seek_or_restore_command;