1
0
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:
Thomas Harte 2017-06-06 18:38:05 -04:00
parent 4677cebf40
commit 5626d35bc4

View File

@ -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;