1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Exit on EOP.

This commit is contained in:
Thomas Harte 2023-12-05 15:37:25 -05:00
parent f97e6095df
commit 6659a1dec5

View File

@ -142,6 +142,7 @@ class FloppyController {
switch(access_result) { switch(access_result) {
default: break; default: break;
case AccessResult::NotAccepted: case AccessResult::NotAccepted:
complete = true;
wrote_in_full = false; wrote_in_full = false;
break; break;
case AccessResult::AcceptedWithEOP: case AccessResult::AcceptedWithEOP: