diff options
| author | 2014-04-07 06:04:18 +0000 | |
|---|---|---|
| committer | 2014-04-07 06:04:18 +0000 | |
| commit | fec65e0b5766ade69e086d1c5b859d97494fce56 (patch) | |
| tree | c22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/machine/6850acia.c | |
| parent | 30d94e51c53f30187a1bc565ef33e4744319790e (diff) | |
Cleanups and version bumpmame0153
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); |
