From 7f22d342658bbde72184c12caa8a62bd28ba4ed4 Mon Sep 17 00:00:00 2001 From: arbee Date: Fri, 11 Dec 2020 18:51:24 -0500 Subject: [PATCH] apple2: Apple II Rev. C SCSI card's bank register is write-only [gorlik] --- src/devices/bus/a2bus/a2scsi.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/devices/bus/a2bus/a2scsi.cpp b/src/devices/bus/a2bus/a2scsi.cpp index 0673aa13938..58b065a4fca 100644 --- a/src/devices/bus/a2bus/a2scsi.cpp +++ b/src/devices/bus/a2bus/a2scsi.cpp @@ -151,9 +151,6 @@ uint8_t a2bus_scsi_device::read_c0nx(uint8_t offset) case 9: // our SCSI ID (normally 0x80 = 7) return (1<<7); - case 0xa: // RAM/ROM bank - return m_bank; - case 0xe: // DRQ status in bit 7 return m_drq;