summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/rc702.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/rc702.cpp')
-rw-r--r--src/mame/drivers/rc702.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/rc702.cpp b/src/mame/drivers/rc702.cpp
index a65fdef8e50..3d4f163c520 100644
--- a/src/mame/drivers/rc702.cpp
+++ b/src/mame/drivers/rc702.cpp
@@ -112,9 +112,9 @@ void rc702_state::rc702_io(address_map &map)
map(0x08, 0x0b).rw("sio1", FUNC(z80dart_device::cd_ba_r), FUNC(z80dart_device::cd_ba_w)); // boot sequence doesn't program this
map(0x0c, 0x0f).rw(m_ctc1, FUNC(z80ctc_device::read), FUNC(z80ctc_device::write));
map(0x10, 0x13).rw(m_pio, FUNC(z80pio_device::read), FUNC(z80pio_device::write));
- map(0x14, 0x17).portr("DSW").w(this, FUNC(rc702_state::port14_w)); // motors
- map(0x18, 0x1b).w(this, FUNC(rc702_state::port18_w)); // memory banking
- map(0x1c, 0x1f).w(this, FUNC(rc702_state::port1c_w)); // sound
+ map(0x14, 0x17).portr("DSW").w(FUNC(rc702_state::port14_w)); // motors
+ map(0x18, 0x1b).w(FUNC(rc702_state::port18_w)); // memory banking
+ map(0x1c, 0x1f).w(FUNC(rc702_state::port1c_w)); // sound
map(0xf0, 0xff).rw(m_dma, FUNC(am9517a_device::read), FUNC(am9517a_device::write));
}