1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Added a WD1770 run_for_cycles call. So I really can now move that as far as reporting that it has no disk?

This commit is contained in:
Thomas Harte 2016-09-20 07:42:17 -04:00
parent cd5939501f
commit e358057440

View File

@ -468,6 +468,7 @@ unsigned int Machine::perform_bus_operation(CPU6502::BusOperation operation, uin
_tape.run_for_cycles(cycles);
if(_typer) _typer->update((int)cycles);
if(_wd1770) _wd1770->run_for_cycles(4*cycles);
return cycles;
}