summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/eprom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/eprom.cpp')
-rw-r--r--src/mame/drivers/eprom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/eprom.cpp b/src/mame/drivers/eprom.cpp
index e79e96bd01e..8383a941b6a 100644
--- a/src/mame/drivers/eprom.cpp
+++ b/src/mame/drivers/eprom.cpp
@@ -83,9 +83,9 @@ READ8_MEMBER(eprom_state::adc_r)
if (!m_adc.found())
return 0xff;
- uint8_t result = m_adc->data_r(space, 0);
+ uint8_t result = m_adc->data_r();
if (!machine().side_effects_disabled())
- m_adc->address_offset_start_w(space, offset, 0);
+ m_adc->address_offset_start_w(offset, 0);
return result;
}