From 6659a1dec5ff31fdf7e875e2765c0517a2d555fb Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 5 Dec 2023 15:37:25 -0500 Subject: [PATCH] Exit on EOP. --- Machines/PCCompatible/PCCompatible.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index 421a64fa9..65d95396e 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -142,6 +142,7 @@ class FloppyController { switch(access_result) { default: break; case AccessResult::NotAccepted: + complete = true; wrote_in_full = false; break; case AccessResult::AcceptedWithEOP: