diff options
author | 2020-04-02 10:30:47 +0100 | |
---|---|---|
committer | 2020-04-02 10:34:53 +0100 | |
commit | 63d3becad69b7b5f60b61de856e18228f99f8164 (patch) | |
tree | 979a93e3e003ce6eccc2f81372a2f2f72f663579 /src/mame/machine/tigeroad.cpp | |
parent | 013fb157289125554358a88ed0020cef5e3405fd (diff) |
removed more dummy_space() and other miscellaneous space passing (nw)
Diffstat (limited to 'src/mame/machine/tigeroad.cpp')
-rw-r--r-- | src/mame/machine/tigeroad.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/tigeroad.cpp b/src/mame/machine/tigeroad.cpp index 1c5a10febac..fd58b706705 100644 --- a/src/mame/machine/tigeroad.cpp +++ b/src/mame/machine/tigeroad.cpp @@ -28,7 +28,7 @@ WRITE16_MEMBER(pushman_state::pushman_mcu_comm_w) m_host_latch = swapendian_int16(data); break; case 1: - m_mcu->pd_w(space, 0, data & 0x00ff); + m_mcu->pd_w(data & 0x00ff); m_host_semaphore = true; m_mcu->set_input_line(M68705_IRQ_LINE, ASSERT_LINE); break; @@ -56,15 +56,15 @@ WRITE8_MEMBER(pushman_state::mcu_pc_w) { if (BIT(data, 0)) { - m_mcu->pa_w(space, 0, 0xff); - m_mcu->pb_w(space, 0, 0xff); + m_mcu->pa_w(0xff); + m_mcu->pb_w(0xff); } else { m_host_semaphore = false; m_mcu->set_input_line(M68705_IRQ_LINE, CLEAR_LINE); - m_mcu->pa_w(space, 0, (m_host_latch >> 0) & 0x00ff); - m_mcu->pb_w(space, 0, (m_host_latch >> 8) & 0x00ff); + m_mcu->pa_w((m_host_latch >> 0) & 0x00ff); + m_mcu->pb_w((m_host_latch >> 8) & 0x00ff); } if (BIT(m_mcu_latch_ctl, 1) && !BIT(data, 1)) |