1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Formalised clock-rate multiplication within disk drives, discovered that the stepper didn't have ideal behaviour for my timed event loop and hence nailed down the semantics a ilttle more.

(obiter: the 1540 now appears to discern the correct sequence of bits. Framing is off in my test printfs but that's neither here nor there).
This commit is contained in:
Thomas Harte
2016-07-31 13:32:30 -04:00
parent 6ee784a893
commit 2332f72875
7 changed files with 59 additions and 14 deletions
+1 -1
View File
@@ -1008,7 +1008,7 @@ inline void Tape::run_for_cycles(unsigned int number_of_cycles)
{
if(_is_running)
{
TapePlayer::run_for_cycles(number_of_cycles);
TapePlayer::run_for_cycles((int)number_of_cycles);
}
}
else