mirror of
https://github.com/holub/mame
synced 2025-05-06 22:35:43 +03:00
fixed uninitialized members in src/emu/machine/6850acia.c (nw)
This commit is contained in:
parent
e755525854
commit
6ec886341c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user