1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-21 02:37:44 +00:00

Disable awaiting_eoi_.

This commit is contained in:
Thomas Harte 2025-04-06 22:24:25 -04:00
parent 668901f71d
commit 8ccec81cc6

View File

@ -127,7 +127,7 @@ public:
bool pending() const {
// Per the OSDev Wiki, masking is applied after the fact.
return !awaiting_eoi_ && (requests_ & ~mask_);
return (requests_ & ~mask_); // !awaiting_eoi_ &&
}
uint8_t acknowledge() {