summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wpc_s.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wpc_s.cpp')
-rw-r--r--src/mame/drivers/wpc_s.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/wpc_s.cpp b/src/mame/drivers/wpc_s.cpp
index 4aa396a9e74..9614fe16dfc 100644
--- a/src/mame/drivers/wpc_s.cpp
+++ b/src/mame/drivers/wpc_s.cpp
@@ -114,8 +114,8 @@ void wpc_s_state::wpc_s_map(address_map &map)
map(0x3fd4, 0x3fd4).portr("FLIPPERS").w(out, FUNC(wpc_out_device::out4_w));
- map(0x3fdc, 0x3fdc).rw(this, FUNC(wpc_s_state::dcs_data_r), FUNC(wpc_s_state::dcs_data_w));
- map(0x3fdd, 0x3fdd).rw(this, FUNC(wpc_s_state::dcs_ctrl_r), FUNC(wpc_s_state::dcs_reset_w));
+ map(0x3fdc, 0x3fdc).rw(FUNC(wpc_s_state::dcs_data_r), FUNC(wpc_s_state::dcs_data_w));
+ map(0x3fdd, 0x3fdd).rw(FUNC(wpc_s_state::dcs_ctrl_r), FUNC(wpc_s_state::dcs_reset_w));
map(0x3fe0, 0x3fe3).w(out, FUNC(wpc_out_device::out_w));
map(0x3fe4, 0x3fe4).nopr().w(lamp, FUNC(wpc_lamp_device::row_w));
@@ -127,13 +127,13 @@ void wpc_s_state::wpc_s_map(address_map &map)
map(0x3fea, 0x3fea).w(pic, FUNC(wpc_pic_device::write));
map(0x3ff2, 0x3ff2).w(out, FUNC(wpc_out_device::led_w));
- map(0x3ff3, 0x3ff3).nopr().w(this, FUNC(wpc_s_state::irq_ack_w));
+ map(0x3ff3, 0x3ff3).nopr().w(FUNC(wpc_s_state::irq_ack_w));
map(0x3ff4, 0x3ff7).m("shift", FUNC(wpc_shift_device::registers));
- map(0x3ff8, 0x3ff8).r(this, FUNC(wpc_s_state::firq_src_r)).nopw(); // ack?
- map(0x3ffa, 0x3ffb).r(this, FUNC(wpc_s_state::rtc_r));
- map(0x3ffc, 0x3ffc).w(this, FUNC(wpc_s_state::bank_w));
+ map(0x3ff8, 0x3ff8).r(FUNC(wpc_s_state::firq_src_r)).nopw(); // ack?
+ map(0x3ffa, 0x3ffb).r(FUNC(wpc_s_state::rtc_r));
+ map(0x3ffc, 0x3ffc).w(FUNC(wpc_s_state::bank_w));
map(0x3ffd, 0x3ffe).noprw(); // memory protection stuff?
- map(0x3fff, 0x3fff).rw(this, FUNC(wpc_s_state::zc_r), FUNC(wpc_s_state::watchdog_w));
+ map(0x3fff, 0x3fff).rw(FUNC(wpc_s_state::zc_r), FUNC(wpc_s_state::watchdog_w));
map(0x4000, 0x7fff).bankr("rombank");
map(0x8000, 0xffff).rom().region("maincpu", 0x78000);