summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti99_2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti99_2.cpp')
-rw-r--r--src/mame/drivers/ti99_2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ti99_2.cpp b/src/mame/drivers/ti99_2.cpp
index 9ec508cc5b2..43eaa7ba890 100644
--- a/src/mame/drivers/ti99_2.cpp
+++ b/src/mame/drivers/ti99_2.cpp
@@ -281,7 +281,7 @@ void ti99_2_state::memmap(address_map &map)
// 3 or 4 ROMs of 8 KiB. The 32K version has two ROMs mapped into 4000-5fff
// Part of the ROM is accessed by the video controller for the
// character definitions (1c00-1fff)
- map(0x0000, 0xffff).rw(this, FUNC(ti99_2_state::mem_read), FUNC(ti99_2_state::mem_write));
+ map(0x0000, 0xffff).rw(FUNC(ti99_2_state::mem_read), FUNC(ti99_2_state::mem_write));
}
/*
@@ -297,7 +297,7 @@ void ti99_2_state::crumap(address_map &map)
// Mirror of CPU-internal flags (1ee0-1efe). Don't read. Write is OK.
map(0x01ee, 0x01ef).nopr();
- map(0x0f70, 0x0f7f).w(this, FUNC(ti99_2_state::intflag_write));
+ map(0x0f70, 0x0f7f).w(FUNC(ti99_2_state::intflag_write));
}
/*