diff options
author | 2020-08-22 18:38:56 +0100 | |
---|---|---|
committer | 2020-08-22 18:40:38 +0100 | |
commit | e62a00e15d77291a2d3df9165a4a1cac8e9715ef (patch) | |
tree | 15ffa40e7d766aa74def77949e09cb7e88a40d95 | |
parent | 6d633630da7ef9dc033841b7514ff465948d0cb5 (diff) |
electron_sndexp3: ROM is mapped to bank 13.
-rw-r--r-- | src/devices/bus/electron/cart/sndexp3.cpp | 4 |
1 files 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) { |