From 5033d2046a13575b400885622cc2e1bb3b8a69cd Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 12 Dec 2023 14:02:46 -0500 Subject: [PATCH] Support auto-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 d4206f516..838cf949f 100644 --- a/Machines/PCCompatible/PIC.hpp +++ b/Machines/PCCompatible/PIC.hpp @@ -139,7 +139,7 @@ class PIC { if(in_service_) { eoi_target_ = id; - awaiting_eoi_ = true; + awaiting_eoi_ = !auto_eoi_; requests_ &= ~in_service_; return vector_base_ + id; }