mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-26 09:29:45 +00:00
Tried flipping the bit meaning; decided at least to leave it in full-byte form.
This commit is contained in:
parent
4677cebf40
commit
5626d35bc4
@ -53,7 +53,7 @@ int Machine::perform_machine_cycle(const CPU::Z80::MachineCycle &cycle) {
|
||||
mask <<= 1;
|
||||
}
|
||||
|
||||
value &= ~(tape_player_.get_input() ? 0x80 : 0);
|
||||
value &= ~(tape_player_.get_input() ? 0x00 : 0x80);
|
||||
}
|
||||
*cycle.value = value;
|
||||
} break;
|
||||
|
Loading…
Reference in New Issue
Block a user