summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pc8401a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pc8401a.cpp')
-rw-r--r--src/mame/drivers/pc8401a.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/pc8401a.cpp b/src/mame/drivers/pc8401a.cpp
index 1b5dde89a6d..cb747a78475 100644
--- a/src/mame/drivers/pc8401a.cpp
+++ b/src/mame/drivers/pc8401a.cpp
@@ -360,26 +360,26 @@ void pc8401a_state::pc8500_io(address_map &map)
map(0x07, 0x07).portr("Y.7");
map(0x08, 0x08).portr("Y.8");
map(0x09, 0x09).portr("Y.9");
- map(0x10, 0x10).w(this, FUNC(pc8401a_state::rtc_cmd_w));
+ map(0x10, 0x10).w(FUNC(pc8401a_state::rtc_cmd_w));
map(0x20, 0x20).rw(I8251_TAG, FUNC(i8251_device::data_r), FUNC(i8251_device::data_w));
map(0x21, 0x21).rw(I8251_TAG, FUNC(i8251_device::status_r), FUNC(i8251_device::control_w));
- map(0x30, 0x30).rw(this, FUNC(pc8401a_state::mmr_r), FUNC(pc8401a_state::mmr_w));
+ map(0x30, 0x30).rw(FUNC(pc8401a_state::mmr_r), FUNC(pc8401a_state::mmr_w));
// AM_RANGE(0x31, 0x31)
- map(0x40, 0x40).rw(this, FUNC(pc8401a_state::rtc_r), FUNC(pc8401a_state::rtc_ctrl_w));
+ map(0x40, 0x40).rw(FUNC(pc8401a_state::rtc_r), FUNC(pc8401a_state::rtc_ctrl_w));
// AM_RANGE(0x41, 0x41)
// AM_RANGE(0x50, 0x51)
map(0x60, 0x60).rw(m_lcdc, FUNC(sed1330_device::status_r), FUNC(sed1330_device::data_w));
map(0x61, 0x61).rw(m_lcdc, FUNC(sed1330_device::data_r), FUNC(sed1330_device::command_w));
- map(0x70, 0x70).rw(this, FUNC(pc8401a_state::port70_r), FUNC(pc8401a_state::port70_w));
- map(0x71, 0x71).rw(this, FUNC(pc8401a_state::port71_r), FUNC(pc8401a_state::port71_w));
+ map(0x70, 0x70).rw(FUNC(pc8401a_state::port70_r), FUNC(pc8401a_state::port70_w));
+ map(0x71, 0x71).rw(FUNC(pc8401a_state::port71_r), FUNC(pc8401a_state::port71_w));
// AM_RANGE(0x80, 0x80) modem status, set to 0xff to boot
// AM_RANGE(0x8b, 0x8b)
// AM_RANGE(0x90, 0x93)
// AM_RANGE(0xa0, 0xa1)
map(0x98, 0x98).w(m_crtc, FUNC(mc6845_device::address_w));
map(0x99, 0x99).rw(m_crtc, FUNC(mc6845_device::register_r), FUNC(mc6845_device::register_w));
- map(0xb0, 0xb3).w(this, FUNC(pc8401a_state::io_rom_addr_w));
- map(0xb3, 0xb3).r(this, FUNC(pc8401a_state::io_rom_data_r));
+ map(0xb0, 0xb3).w(FUNC(pc8401a_state::io_rom_addr_w));
+ map(0xb3, 0xb3).r(FUNC(pc8401a_state::io_rom_data_r));
// AM_RANGE(0xc8, 0xc8)
map(0xfc, 0xff).rw(I8255A_TAG, FUNC(i8255_device::read), FUNC(i8255_device::write));
}