From 6ec886341cd9d1f1d7066ada47027ba6b955c4b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 6 Mar 2013 20:35:17 +0000 Subject: [PATCH] fixed uninitialized members in src/emu/machine/6850acia.c (nw) --- src/emu/machine/6850acia.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/emu/machine/6850acia.c b/src/emu/machine/6850acia.c index fcc73312599..e0d6155e721 100644 --- a/src/emu/machine/6850acia.c +++ b/src/emu/machine/6850acia.c @@ -145,6 +145,8 @@ void acia6850_device::device_reset() m_tx_counter = 0; m_rx_counter = 0; + m_divide = 0; + TXD(1); m_overrun = 0; m_status_read = 0; @@ -156,6 +158,9 @@ void acia6850_device::device_reset() m_rts = 0; m_ctrl = 0; + m_bits = 0; + m_tx_int = 0; + m_out_irq_func(CLEAR_LINE); if (m_first_reset)