diff options
author | 2020-06-16 18:11:46 +0200 | |
---|---|---|
committer | 2020-06-16 18:11:46 +0200 | |
commit | da639365600fab4edad4b4ede11333cfd5da218a (patch) | |
tree | 1287207f24714054cecaf17094aa1de3cde615e6 /src/mame/machine/tigeroad.cpp | |
parent | b681607a543255a237036cadb0931a41444ede3d (diff) |
drivers starting with t, u, v, w and most of drivers starting with x: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/machine/tigeroad.cpp')
-rw-r--r-- | src/mame/machine/tigeroad.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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; |