summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mcr.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-02 17:08:29 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-02 17:48:20 +0100
commit3e1c1842c8be48973643ad747520589a0dc96cc9 (patch)
tree63385af8c0229b70c551c657e3fd041265c9cb84 /src/mame/drivers/mcr.cpp
parent28c582390a80ada2c6db7925dbd1dcfe73b2b389 (diff)
Finish the non-ambiguous ones (nw)
Diffstat (limited to 'src/mame/drivers/mcr.cpp')
-rw-r--r--src/mame/drivers/mcr.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/drivers/mcr.cpp b/src/mame/drivers/mcr.cpp
index 82f84d63555..2b9954067d0 100644
--- a/src/mame/drivers/mcr.cpp
+++ b/src/mame/drivers/mcr.cpp
@@ -636,17 +636,12 @@ READ8_MEMBER(mcr_nflfoot_state::ip2_r)
{
/* bit 7 = J3-2 on IPU board = TXDA on SIO */
uint8_t val = m_ipu_sio_txda << 7;
-
- if (space.device().safe_pc() != 0x107)
- logerror("%04X:ip2_r = %02X\n", space.device().safe_pc(), val);
return val;
}
WRITE8_MEMBER(mcr_nflfoot_state::op4_w)
{
- logerror("%04X:op4_w(%d%d%d)\n", space.device().safe_pc(), (data >> 7) & 1, (data >> 6) & 1, (data >> 5) & 1);
-
/* bit 7 = J3-7 on IPU board = /RXDA on SIO */
m_ipu_sio->rxa_w(!((data >> 7) & 1));