From 28ce675c968c27d278a915e735a023dfd0364d79 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 19 Feb 2021 22:22:14 -0500 Subject: [PATCH] Takes a further stab at ::CommandDataIsValid. --- Machines/Apple/AppleIIgs/ADB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Apple/AppleIIgs/ADB.cpp b/Machines/Apple/AppleIIgs/ADB.cpp index a0d8c8fae..de657376d 100644 --- a/Machines/Apple/AppleIIgs/ADB.cpp +++ b/Machines/Apple/AppleIIgs/ADB.cpp @@ -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]; }