summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mc6852.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mc6852.cpp')
-rw-r--r--src/devices/machine/mc6852.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/mc6852.cpp b/src/devices/machine/mc6852.cpp
index e8ed3241b92..e4a5ffbf1fd 100644
--- a/src/devices/machine/mc6852.cpp
+++ b/src/devices/machine/mc6852.cpp
@@ -196,7 +196,7 @@ WRITE8_MEMBER( mc6852_device::write )
/* control 2 */
if (LOG) logerror("MC6852 '%s' Control 2 %02x\n", tag(), data);
m_cr[1] = data;
-
+
int data_bit_count = 0;
parity_t parity = PARITY_NONE;
stop_bits_t stop_bits = STOP_BITS_1;
@@ -242,7 +242,7 @@ WRITE8_MEMBER( mc6852_device::write )
else
{
if (LOG) logerror("MC6852 '%s' Control 1 %02x\n", tag(), data);
-
+
/* receiver reset */
if (data & C1_RX_RS)
{
@@ -273,7 +273,7 @@ WRITE8_MEMBER( mc6852_device::write )
if (LOG) logerror("MC6852 '%s' Transmitter Reset\n", tag());
m_status &= ~(S_TUF | S_CTS | S_TDRA);
-
+
transmit_register_reset();
}