summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/tigeroad.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-01-29 00:12:30 +1100
committer Vas Crabb <vas@vastheman.com>2017-01-29 00:12:30 +1100
commit2ceb7892a37919c7ea69ee4fb7df0d33a316991e (patch)
tree3238e8a030329c810a26e36539e83ccb30220204 /src/mame/machine/tigeroad.cpp
parenta7c058182cc6a9d163737293cfd64e6c8a91d2f3 (diff)
probably no lane select (nw)
Diffstat (limited to 'src/mame/machine/tigeroad.cpp')
-rw-r--r--src/mame/machine/tigeroad.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/machine/tigeroad.cpp b/src/mame/machine/tigeroad.cpp
index 07bcd2fc3bd..6153306b34d 100644
--- a/src/mame/machine/tigeroad.cpp
+++ b/src/mame/machine/tigeroad.cpp
@@ -146,8 +146,7 @@ WRITE16_MEMBER(pushman_state::pushman_mcu_comm_w)
switch (offset & 0x01)
{
case 0:
- data = flipendian_int16(data);
- COMBINE_DATA(&m_host_latch);
+ m_host_latch = flipendian_int16(data);
break;
case 1:
m_mcu->pd_w(space, 0, data & 0x00ff);
@@ -159,7 +158,7 @@ WRITE16_MEMBER(pushman_state::pushman_mcu_comm_w)
WRITE16_MEMBER(pushman_state::bballs_mcu_comm_w)
{
- COMBINE_DATA(&m_host_latch);
+ m_host_latch = data;
m_host_semaphore = true;
m_mcu->set_input_line(M68705_IRQ_LINE, ASSERT_LINE);
}