From e62a00e15d77291a2d3df9165a4a1cac8e9715ef Mon Sep 17 00:00:00 2001 From: Nigel Barnes Date: Sat, 22 Aug 2020 18:38:56 +0100 Subject: electron_sndexp3: ROM is mapped to bank 13. --- src/devices/bus/electron/cart/sndexp3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/electron/cart/sndexp3.cpp b/src/devices/bus/electron/cart/sndexp3.cpp index afaf927e443..f39fb90c414 100644 --- a/src/devices/bus/electron/cart/sndexp3.cpp +++ b/src/devices/bus/electron/cart/sndexp3.cpp @@ -66,7 +66,7 @@ uint8_t electron_sndexp3_device::read(offs_t offset, int infc, int infd, int rom { uint8_t data = 0xff; - if (oe && romqa) + if (oe2) { if (offset < 0x2000) { @@ -103,7 +103,7 @@ void electron_sndexp3_device::write(offs_t offset, uint8_t data, int infc, int i break; } } - else if (oe && romqa) + else if (oe2) { if (offset >= 0x2000) { -- cgit v1.2.3