diff --git a/bin/driver7M5.bin b/bin/driver7M5.bin index c1b95d8..12c3eb8 100755 Binary files a/bin/driver7M5.bin and b/bin/driver7M5.bin differ diff --git a/bin/rom8M.bin b/bin/rom8M.bin index e205e8c..2a3571d 100755 Binary files a/bin/rom8M.bin and b/bin/rom8M.bin differ diff --git a/rdisk.c b/rdisk.c index bbb8dc7..17973f1 100644 --- a/rdisk.c +++ b/rdisk.c @@ -210,17 +210,6 @@ OSErr RDPrime(IOParamPtr p, DCtlPtr d) { // Read from disk into buffer. if (*MMU32bit) { BlockMove(disk, p->ioBuffer, p->ioReqCount); } else { copy24(disk, StripAddress(p->ioBuffer), p->ioReqCount); } - - if (/*!c->dbgEN && */!c->ramdisk && - *RDiskDBGDisPos >= d->dCtlPosition && - *RDiskDBGDisPos < d->dCtlPosition + p->ioReqCount) { - //p->ioBuffer[*RDiskDBGDisPos - d->dCtlPosition] = 0x44;//*RDiskDBGDisByte; - } - if (/*!c->cdromEN && */!c->ramdisk && - *RDiskCDROMDisPos >= d->dCtlPosition && - *RDiskCDROMDisPos < d->dCtlPosition + p->ioReqCount) { - //p->ioBuffer[*RDiskCDROMDisPos - d->dCtlPosition] = 0x44;//*RDiskCDROMDisByte; - } } else if (cmd == aWrCmd) { // Write // Fail if write protected or RAM disk buffer not set up if (c->status.writeProt || !c->ramdisk) { return wPrErr; }