summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/harriet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/harriet.cpp')
-rw-r--r--src/mame/drivers/harriet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/harriet.cpp b/src/mame/drivers/harriet.cpp
index f09bc18d2e7..4e2b1abec85 100644
--- a/src/mame/drivers/harriet.cpp
+++ b/src/mame/drivers/harriet.cpp
@@ -57,12 +57,12 @@ READ8_MEMBER(harriet_state::unk_status_r)
void harriet_state::harriet_map(address_map &map)
{
map(0x000000, 0x007fff).rom().region("monitor", 0);
- map(0x040000, 0x040fff).rw(this, FUNC(harriet_state::zpram_r), FUNC(harriet_state::zpram_w)).umask16(0xff00);
+ map(0x040000, 0x040fff).rw(FUNC(harriet_state::zpram_r), FUNC(harriet_state::zpram_w)).umask16(0xff00);
map(0x040000, 0x040fff).rw("timekpr", FUNC(timekeeper_device::read), FUNC(timekeeper_device::write)).umask16(0x00ff);
map(0x7f0000, 0x7fffff).ram();
map(0xf10000, 0xf1001f).rw("duart", FUNC(mc68681_device::read), FUNC(mc68681_device::write)).umask16(0x00ff);
map(0xf20000, 0xf2002f).rw("mfp", FUNC(mc68901_device::read), FUNC(mc68901_device::write)).umask16(0x00ff);
- map(0xf4003f, 0xf4003f).r(this, FUNC(harriet_state::unk_status_r));
+ map(0xf4003f, 0xf4003f).r(FUNC(harriet_state::unk_status_r));
}
static INPUT_PORTS_START( harriet )