From 4d1e976b5561e334dc4defcd75ad9a131ce5bea1 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 1 Dec 2023 09:49:50 -0500 Subject: [PATCH] Flag drive as interrupting. --- Machines/PCCompatible/PCCompatible.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index aeeaf342c..b6131fb60 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -181,6 +181,8 @@ class FloppyController { decoder_.geometry().size); } + drives_[decoder_.target().drive].status = decoder_.drive_head(); + drives_[decoder_.target().drive].raised_interrupt = true; pic_.apply_edge<6>(true); } break;