From 061eca8c3af845adb6e169437fe6c8f11fd4eefd Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Fri, 29 Dec 2017 22:17:47 -0500 Subject: [PATCH] remove hack that sped up disk access for unknown reasons: it was b/c it was giving the logic sequencer time to sync --- apple/diskii.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apple/diskii.cpp b/apple/diskii.cpp index a4ea876..dbaf83f 100644 --- a/apple/diskii.cpp +++ b/apple/diskii.cpp @@ -130,12 +130,6 @@ uint8_t DiskII::readSwitches(uint8_t s) case 0x0E: // set read mode setWriteMode(false); - - // FIXME: with this shortcut here, disk access speeds up ridiculously. - // Is this breaking anything? - /*return ( (readOrWriteByte() & 0x7F) | - (isWriteProtected() ? 0x80 : 0x00) ); - */ break; case 0x0F: // set write mode setWriteMode(true);