From 8ccec81cc651187f94145b957f6642e8e74db6a0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 6 Apr 2025 22:24:25 -0400 Subject: [PATCH] Disable awaiting_eoi_. --- Machines/PCCompatible/PIC.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/PCCompatible/PIC.hpp b/Machines/PCCompatible/PIC.hpp index 006fc9c96..18eed2c86 100644 --- a/Machines/PCCompatible/PIC.hpp +++ b/Machines/PCCompatible/PIC.hpp @@ -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() {