From da639365600fab4edad4b4ede11333cfd5da218a Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Tue, 16 Jun 2020 18:11:46 +0200 Subject: drivers starting with t, u, v, w and most of drivers starting with x: removed read* and write* macros (nw) --- src/mame/machine/tigeroad.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mame/machine/tigeroad.cpp') diff --git a/src/mame/machine/tigeroad.cpp b/src/mame/machine/tigeroad.cpp index 5690504a996..3a25afcd373 100644 --- a/src/mame/machine/tigeroad.cpp +++ b/src/mame/machine/tigeroad.cpp @@ -3,7 +3,7 @@ #include "emu.h" #include "includes/tigeroad.h" -READ16_MEMBER(pushman_state::mcu_comm_r) +uint16_t pushman_state::mcu_comm_r(offs_t offset, uint16_t mem_mask) { switch (offset & 0x03) { @@ -20,7 +20,7 @@ READ16_MEMBER(pushman_state::mcu_comm_r) return 0xffff; } -WRITE16_MEMBER(pushman_state::pushman_mcu_comm_w) +void pushman_state::pushman_mcu_comm_w(offs_t offset, uint16_t data) { switch (offset & 0x01) { @@ -35,7 +35,7 @@ WRITE16_MEMBER(pushman_state::pushman_mcu_comm_w) } } -WRITE16_MEMBER(pushman_state::bballs_mcu_comm_w) +void pushman_state::bballs_mcu_comm_w(uint16_t data) { m_host_latch = data; m_host_semaphore = true; -- cgit v1.2.3-70-g09d2