summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mz80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mz80.cpp')
-rw-r--r--src/mame/drivers/mz80.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mz80.cpp b/src/mame/drivers/mz80.cpp
index 9bea9eb25ee..d5b1ea9048b 100644
--- a/src/mame/drivers/mz80.cpp
+++ b/src/mame/drivers/mz80.cpp
@@ -253,7 +253,7 @@ void mz80_state::mz80k_mem(address_map &map)
map(0xd000, 0xd7ff).ram().share("videoram"); // Video RAM
map(0xe000, 0xe003).rw(m_ppi, FUNC(i8255_device::read), FUNC(i8255_device::write)); /* PPIA 8255 */
map(0xe004, 0xe007).rw(m_pit, FUNC(pit8253_device::read), FUNC(pit8253_device::write)); /* PIT 8253 */
- map(0xe008, 0xe00b).rw(this, FUNC(mz80_state::mz80k_strobe_r), FUNC(mz80_state::mz80k_strobe_w));
+ map(0xe008, 0xe00b).rw(FUNC(mz80_state::mz80k_strobe_r), FUNC(mz80_state::mz80k_strobe_w));
map(0xf000, 0xf3ff).rom();
}