summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/flstory.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/flstory.c')
-rw-r--r--src/mame/machine/flstory.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/machine/flstory.c b/src/mame/machine/flstory.c
index 7f9276794e8..ec092494c2e 100644
--- a/src/mame/machine/flstory.c
+++ b/src/mame/machine/flstory.c
@@ -22,14 +22,12 @@
READ8_MEMBER(flstory_state::flstory_68705_port_a_r)
{
-
//logerror("%04x: 68705 port A read %02x\n", space.device().safe_pc(), m_port_a_in);
return (m_port_a_out & m_ddr_a) | (m_port_a_in & ~m_ddr_a);
}
WRITE8_MEMBER(flstory_state::flstory_68705_port_a_w)
{
-
//logerror("%04x: 68705 port A write %02x\n", space.device().safe_pc(), data);
m_port_a_out = data;
}
@@ -85,7 +83,6 @@ WRITE8_MEMBER(flstory_state::flstory_68705_ddr_b_w)
READ8_MEMBER(flstory_state::flstory_68705_port_c_r)
{
-
m_port_c_in = 0;
if (m_main_sent)
m_port_c_in |= 0x01;
@@ -110,7 +107,6 @@ WRITE8_MEMBER(flstory_state::flstory_68705_ddr_c_w)
WRITE8_MEMBER(flstory_state::flstory_mcu_w)
{
-
logerror("%04x: mcu_w %02x\n", space.device().safe_pc(), data);
m_from_main = data;
m_main_sent = 1;
@@ -119,7 +115,6 @@ WRITE8_MEMBER(flstory_state::flstory_mcu_w)
READ8_MEMBER(flstory_state::flstory_mcu_r)
{
-
logerror("%04x: mcu_r %02x\n",space.device().safe_pc(), m_from_mcu);
m_mcu_sent = 0;
return m_from_mcu;