From 63d3becad69b7b5f60b61de856e18228f99f8164 Mon Sep 17 00:00:00 2001 From: smf- Date: Thu, 2 Apr 2020 10:30:47 +0100 Subject: removed more dummy_space() and other miscellaneous space passing (nw) --- src/mame/machine/tigeroad.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mame/machine/tigeroad.cpp') 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)) -- cgit v1.2.3-70-g09d2