summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m4510.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/m4510.cpp')
-rw-r--r--src/devices/cpu/m6502/m4510.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/m4510.cpp b/src/devices/cpu/m6502/m4510.cpp
index 852d3e5807a..71a038435ce 100644
--- a/src/devices/cpu/m6502/m4510.cpp
+++ b/src/devices/cpu/m6502/m4510.cpp
@@ -56,14 +56,14 @@ void m4510_device::device_reset()
m65ce02_device::device_reset();
}
-bool m4510_device::memory_translate(int spacenum, int intention, offs_t &address)
+int m4510_device::memory_translate(int spacenum, int intention, offs_t &address) const
{
if (spacenum == AS_PROGRAM)
{
address = map(address);
}
- return true;
+ return spacenum;
}
m4510_device::mi_4510_normal::mi_4510_normal(m4510_device *_base)