mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
Drive select lines are active low.
This commit is contained in:
parent
0567410bcf
commit
20bf425f98
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user