summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/poly88.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/poly88.cpp')
-rw-r--r--src/mame/drivers/poly88.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/poly88.cpp b/src/mame/drivers/poly88.cpp
index e4c2462be4e..90d453e84ca 100644
--- a/src/mame/drivers/poly88.cpp
+++ b/src/mame/drivers/poly88.cpp
@@ -66,9 +66,9 @@ void poly88_state::poly88_io(address_map &map)
map.global_mask(0xff);
map(0x00, 0x00).rw(m_uart, FUNC(i8251_device::data_r), FUNC(i8251_device::data_w));
map(0x01, 0x01).rw(m_uart, FUNC(i8251_device::status_r), FUNC(i8251_device::control_w));
- map(0x04, 0x04).w(this, FUNC(poly88_state::poly88_baud_rate_w));
- map(0x08, 0x08).w(this, FUNC(poly88_state::poly88_intr_w));
- map(0xf8, 0xf8).r(this, FUNC(poly88_state::poly88_keyboard_r));
+ map(0x04, 0x04).w(FUNC(poly88_state::poly88_baud_rate_w));
+ map(0x08, 0x08).w(FUNC(poly88_state::poly88_intr_w));
+ map(0xf8, 0xf8).r(FUNC(poly88_state::poly88_keyboard_r));
}
void poly88_state::poly8813_mem(address_map &map)