From dd135bf3fe6d8115f963b03a096820df14f1c036 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 24 Nov 2023 22:41:33 -0500 Subject: [PATCH] Start experimenting with a possible end-of-reset interrupt? --- Machines/PCCompatible/PCCompatible.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index 7355e4e1b..d720c717f 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -55,13 +55,14 @@ class FloppyController { reset(); } hold_reset_ = hold_reset; + if(hold_reset_) { + pic_.apply_edge<6>(false); + } } private: void reset() { decoder_.clear(); - - // TODO: And? // pic_.apply_edge<6>(true); }