summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/m68705prg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/m68705prg.cpp')
-rw-r--r--src/mame/drivers/m68705prg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/m68705prg.cpp b/src/mame/drivers/m68705prg.cpp
index 80b07e07cf5..a56269b3559 100644
--- a/src/mame/drivers/m68705prg.cpp
+++ b/src/mame/drivers/m68705prg.cpp
@@ -168,7 +168,7 @@ protected:
m_pb_val = data;
u8 const *const ptr(m_eprom_image->get_rom_base());
- m_mcu->pa_w(space, 0, ptr ? ptr[m_addr & m_mcu_region.mask()] : 0xff);
+ m_mcu->pa_w(ptr ? ptr[m_addr & m_mcu_region.mask()] : 0xff);
m_digits[0] = s_7seg[(m_addr >> 0) & 0x0f];
m_digits[1] = s_7seg[(m_addr >> 4) & 0x0f];