summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/ross.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/ross.cpp')
-rw-r--r--src/devices/bus/c64/ross.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/c64/ross.cpp b/src/devices/bus/c64/ross.cpp
index 25c1a996df8..e8703a33bcc 100644
--- a/src/devices/bus/c64/ross.cpp
+++ b/src/devices/bus/c64/ross.cpp
@@ -68,7 +68,7 @@ uint8_t c64_ross_cartridge_device::c64_cd_r(offs_t offset, uint8_t data, int sph
{
offs_t addr = (m_bank << 14) | (offset & 0x3fff);
- data = m_roml[addr & m_roml.mask()];
+ data = m_roml[addr];
}
return data;