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 180078aff0f..e4dcb628132 100644
--- a/src/mame/drivers/poly88.cpp
+++ b/src/mame/drivers/poly88.cpp
@@ -70,9 +70,9 @@ void poly88_state::poly88_io(address_map &map)
map.unmap_value_high();
map.global_mask(0xff);
map(0x00, 0x01).rw(m_usart, FUNC(i8251_device::read), FUNC(i8251_device::write));
- 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));
+ map(0x04, 0x04).w(FUNC(poly88_state::baud_rate_w));
+ map(0x08, 0x08).w(FUNC(poly88_state::intr_w));
+ map(0xf8, 0xf8).r(FUNC(poly88_state::keyboard_r));
}
void poly88_state::poly8813_mem(address_map &map)