summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti99_8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti99_8.cpp')
-rw-r--r--src/mame/drivers/ti99_8.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ti99_8.cpp b/src/mame/drivers/ti99_8.cpp
index 1b49497785f..f45dbb0b894 100644
--- a/src/mame/drivers/ti99_8.cpp
+++ b/src/mame/drivers/ti99_8.cpp
@@ -309,10 +309,10 @@ void ti99_8_state::memmap(address_map &map)
void ti99_8_state::crumap(address_map &map)
{
- map(0x0000, 0x02ff).r(this, FUNC(ti99_8_state::cruread));
+ map(0x0000, 0x02ff).r(FUNC(ti99_8_state::cruread));
map(0x0000, 0x0003).r(m_tms9901, FUNC(tms9901_device::read));
- map(0x0000, 0x17ff).w(this, FUNC(ti99_8_state::cruwrite));
+ map(0x0000, 0x17ff).w(FUNC(ti99_8_state::cruwrite));
map(0x0000, 0x001f).w(m_tms9901, FUNC(tms9901_device::write));
}