mirror of
https://github.com/holub/mame
synced 2025-10-05 00:38:58 +03:00
fixed usage of uninitialized members in mos6551_device (nw)
This commit is contained in:
parent
99722af3a6
commit
f6930e9209
@ -24,6 +24,7 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d
|
||||
m_rts_handler(*this),
|
||||
m_dtr_handler(*this),
|
||||
m_control(0),
|
||||
m_status(0),
|
||||
m_tdr(0),
|
||||
m_irq_state(0),
|
||||
m_irq(0),
|
||||
@ -37,7 +38,10 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d
|
||||
m_dsr(1),
|
||||
m_dcd(1),
|
||||
m_rxd(1),
|
||||
m_rx_state(STATE_START),
|
||||
m_rx_clock(0),
|
||||
m_rx_counter(0),
|
||||
m_rx_internal_clock(0),
|
||||
m_tx_state(STATE_START),
|
||||
m_tx_output(OUTPUT_MARK),
|
||||
m_tx_clock(0),
|
||||
|
Loading…
Reference in New Issue
Block a user