mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-08 14:25:05 +00:00
Disable awaiting_eoi_.
This commit is contained in:
@@ -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() {
|
||||
|
Reference in New Issue
Block a user