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

Adjusts the 1770 not to talk directly to the drive about motor status.

This commit is contained in:
Thomas Harte
2017-09-11 22:10:56 -04:00
parent fb9fd26af7
commit 2f13517f38
4 changed files with 12 additions and 2 deletions
+6
View File
@@ -47,3 +47,9 @@ void Plus3::set_control_register(uint8_t control, uint8_t changes) {
}
if(changes & 0x08) set_is_double_density(!(control & 0x08));
}
void Plus3::set_motor_on(bool on) {
// TODO: this status should transfer if the selected drive changes. But the same goes for
// writing state, so plenty of work to do in general here.
get_drive().set_motor_on(on);
}