summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mod8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mod8.cpp')
-rw-r--r--src/mame/drivers/mod8.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/mod8.cpp b/src/mame/drivers/mod8.cpp
index 66c1293ad94..eca0786b664 100644
--- a/src/mame/drivers/mod8.cpp
+++ b/src/mame/drivers/mod8.cpp
@@ -121,9 +121,9 @@ void mod8_state::mod8_io(address_map &map)
{
map.unmap_value_high();
map.global_mask(0xff);
- map(0x00, 0x00).r(this, FUNC(mod8_state::tty_r));
- map(0x0a, 0x0a).w(this, FUNC(mod8_state::out_w));
- map(0x0b, 0x0b).w(this, FUNC(mod8_state::tty_w));
+ map(0x00, 0x00).r(FUNC(mod8_state::tty_r));
+ map(0x0a, 0x0a).w(FUNC(mod8_state::out_w));
+ map(0x0b, 0x0b).w(FUNC(mod8_state::tty_w));
}
/* Input ports */