summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mephisto_modular_tm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mephisto_modular_tm.cpp')
-rw-r--r--src/mame/drivers/mephisto_modular_tm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mephisto_modular_tm.cpp b/src/mame/drivers/mephisto_modular_tm.cpp
index e27296a17e8..06a2fd59fd8 100644
--- a/src/mame/drivers/mephisto_modular_tm.cpp
+++ b/src/mame/drivers/mephisto_modular_tm.cpp
@@ -92,7 +92,7 @@ private:
bool m_bootrom_enabled;
TIMER_DEVICE_CALLBACK_MEMBER(disable_bootrom) { m_bootrom_enabled = false; }
- DECLARE_READ32_MEMBER(bootrom_r) { return (m_bootrom_enabled) ? m_rom[offset] : m_mainram[offset]; }
+ u32 bootrom_r(offs_t offset) { return (m_bootrom_enabled) ? m_rom[offset] : m_mainram[offset]; }
void set_cpu_freq();
};