1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00

Revokes unnecessary change.

This commit is contained in:
Thomas Harte 2017-09-16 18:24:13 -04:00
parent 0d84b4b9dd
commit d6a5f9a29e

View File

@ -26,7 +26,7 @@ using namespace Intel::i8272;
#define SetBusy() (main_status_ |= 0x10)
#define ResetBusy() (main_status_ &= ~0x10)
#define IsBusy() (main_status_ & 0x10)
#define Busy() (main_status_ & 0x10)
#define SetAbnormalTermination() (status_[0] |= 0x40)
#define SetInvalidCommand() (status_[0] |= 0x80)