summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/microdec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/microdec.cpp')
-rw-r--r--src/mame/drivers/microdec.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/microdec.cpp b/src/mame/drivers/microdec.cpp
index 168c5fcbdbb..2e20548a3c3 100644
--- a/src/mame/drivers/microdec.cpp
+++ b/src/mame/drivers/microdec.cpp
@@ -133,10 +133,10 @@ void microdec_state::microdec_io(address_map &map)
{
map.unmap_value_high();
map.global_mask(0xff);
- map(0xf5, 0xf5).r(this, FUNC(microdec_state::portf5_r));
- map(0xf6, 0xf6).rw(this, FUNC(microdec_state::portf6_r), FUNC(microdec_state::portf6_w));
- map(0xf7, 0xf7).rw(this, FUNC(microdec_state::portf7_r), FUNC(microdec_state::portf7_w));
- map(0xf8, 0xf8).w(this, FUNC(microdec_state::portf8_w));
+ map(0xf5, 0xf5).r(FUNC(microdec_state::portf5_r));
+ map(0xf6, 0xf6).rw(FUNC(microdec_state::portf6_r), FUNC(microdec_state::portf6_w));
+ map(0xf7, 0xf7).rw(FUNC(microdec_state::portf7_r), FUNC(microdec_state::portf7_w));
+ map(0xf8, 0xf8).w(FUNC(microdec_state::portf8_w));
map(0xfa, 0xfb).m(m_fdc, FUNC(upd765a_device::map));
map(0xfc, 0xfc).rw("uart1", FUNC(i8251_device::data_r), FUNC(i8251_device::data_w));
map(0xfd, 0xfd).rw("uart1", FUNC(i8251_device::status_r), FUNC(i8251_device::control_w));