diff options
Diffstat (limited to 'src/emu/machine/6850acia.c')
| -rw-r--r-- | src/emu/machine/6850acia.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/6850acia.c b/src/emu/machine/6850acia.c index 2e52de30d57..04344c9c612 100644 --- a/src/emu/machine/6850acia.c +++ b/src/emu/machine/6850acia.c @@ -329,7 +329,7 @@ WRITE_LINE_MEMBER( acia6850_device::write_rxc ) { m_status &= ~SR_DCD; } - + m_rx_counter++; switch (m_rx_state) @@ -430,7 +430,7 @@ WRITE_LINE_MEMBER( acia6850_device::write_rxc ) m_rx_counter = 0; if (LOG) logerror("MC6850 '%s': RX STOP BIT\n", tag()); - + if (!m_rxd) { m_status |= SR_FE; @@ -536,7 +536,7 @@ WRITE_LINE_MEMBER( acia6850_device::write_txc ) if (m_tx_counter == m_divide) { m_tx_counter = 0; - + m_tx_bits++; if (LOG) logerror("MC6850 '%s': TX STOP BIT %d\n", tag(), m_tx_bits); |
