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

Started devolving timed event loop logic down to the drives, moving them closer to modelling real life.

This commit is contained in:
Thomas Harte
2017-09-10 14:43:20 -04:00
parent fed2bc9fc9
commit 90c7056d12
9 changed files with 76 additions and 16 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ class i8272: public Storage::Disk::MFMController {
Drive() :
head_position(0), phase(NotSeeking),
drive(new Storage::Disk::Drive),
drive(new Storage::Disk::Drive(8000000, 300)), // TODO: these constants can't live here.
head_is_loaded{false, false},
head_unload_delay{0, 0} {};
} drives_[4];