summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sacstate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sacstate.cpp')
-rw-r--r--src/mame/drivers/sacstate.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/sacstate.cpp b/src/mame/drivers/sacstate.cpp
index 8943bd88bb9..fe225bb28fa 100644
--- a/src/mame/drivers/sacstate.cpp
+++ b/src/mame/drivers/sacstate.cpp
@@ -105,10 +105,10 @@ void sacstate_state::sacstate_io(address_map &map)
{
map.unmap_value_high();
map.global_mask(0xff);
- map(0x00, 0x00).r(this, FUNC(sacstate_state::port00_r));
- map(0x01, 0x01).r(this, FUNC(sacstate_state::port01_r));
- map(0x04, 0x04).r(this, FUNC(sacstate_state::port04_r));
- map(0x08, 0x08).w(this, FUNC(sacstate_state::port08_w));
+ map(0x00, 0x00).r(FUNC(sacstate_state::port00_r));
+ map(0x01, 0x01).r(FUNC(sacstate_state::port01_r));
+ map(0x04, 0x04).r(FUNC(sacstate_state::port04_r));
+ map(0x08, 0x08).w(FUNC(sacstate_state::port08_w));
map(0x16, 0x16).w(m_terminal, FUNC(generic_terminal_device::write));
map(0x17, 0x1f).nopw();
}