summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti990_10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti990_10.cpp')
-rw-r--r--src/mame/drivers/ti990_10.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ti990_10.cpp b/src/mame/drivers/ti990_10.cpp
index 942a2acfa53..c05437ce1d9 100644
--- a/src/mame/drivers/ti990_10.cpp
+++ b/src/mame/drivers/ti990_10.cpp
@@ -302,10 +302,10 @@ void ti990_10_state::ti990_10_io(address_map &map)
map(0x80, 0x8f).w(m_terminal, FUNC(vdt911_device::cru_w));
map(0x1fa, 0x1fb).noprw(); // AM_READ(ti990_10_mapper_cru_r)
map(0x1fc, 0x1fd).noprw(); // AM_READ(ti990_10_eir_cru_r)
- map(0x1fe, 0x1ff).r(this, FUNC(ti990_10_state::ti990_panel_read));
+ map(0x1fe, 0x1ff).r(FUNC(ti990_10_state::ti990_panel_read));
map(0xfd0, 0xfdf).noprw(); // AM_WRITE(ti990_10_mapper_cru_w)
map(0xfe0, 0xfef).noprw(); // AM_WRITE(ti990_10_eir_cru_w)
- map(0xff0, 0xfff).w(this, FUNC(ti990_10_state::ti990_panel_write));
+ map(0xff0, 0xfff).w(FUNC(ti990_10_state::ti990_panel_write));
}