remove hack that sped up disk access for unknown reasons: it was b/c it was giving the logic sequencer time to sync

This commit is contained in:
Jorj Bauer 2017-12-29 22:17:47 -05:00
parent a24406870e
commit 061eca8c3a
1 changed files with 0 additions and 6 deletions

View File

@ -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);