From 8c70317d312d9dc36f438e0f5805aadc904211c0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 24 Nov 2023 23:06:52 -0500 Subject: [PATCH] Introduce interrupt. --- Machines/PCCompatible/PCCompatible.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index d720c717f..6594ea45f 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -63,7 +63,7 @@ class FloppyController { private: void reset() { decoder_.clear(); -// pic_.apply_edge<6>(true); + pic_.apply_edge<6>(true); } PIC &pic_;