fixed uninitialized members in src/emu/machine/6850acia.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-06 20:35:17 +00:00
parent e755525854
commit 6ec886341c

View File

@ -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)