1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Drive select lines are active low.

This commit is contained in:
Thomas Harte 2019-11-02 23:37:56 -04:00
parent 0567410bcf
commit 20bf425f98

View File

@ -512,7 +512,7 @@ class ConcreteMachine:
b1: select floppy drive 0
b0: "page choice signal for double-sided floppy drive"
*/
dma_->set_floppy_drive_selection(value & 2, value & 4, value & 1);
dma_->set_floppy_drive_selection(!(value & 2), !(value & 4), value & 1);
}
}