summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/tigeroad.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/tigeroad.cpp')
-rw-r--r--src/mame/machine/tigeroad.cpp10
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))