1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Takes a further stab at ::CommandDataIsValid.

This commit is contained in:
Thomas Harte 2021-02-19 22:22:14 -05:00
parent 3d91b0a31b
commit 28ce675c96

View File

@ -96,7 +96,7 @@ uint8_t GLU::get_data() {
// b5: 1 = control, command and reset have all been pressed together; 0 = they haven't.
// b6: 1 = ADB controller encountered an error and reset itself; 0 = no error.
// b7: 1 = ADB has received a response from the addressed ADB device; 0 = no respone.
// status_ &= ~(CPUFlags::CommandDataIsValid | CPUFlags::CommandRegisterFull);
status_ &= ~uint8_t(CPUFlags::CommandDataIsValid);
return registers_[7];
}