mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fixed usage of uninitialized members in mos6551_device (nw)
This commit is contained in:
parent
c45fffdb51
commit
ee88522aba
@ -24,6 +24,8 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d
|
||||
m_rts_handler(*this),
|
||||
m_dtr_handler(*this),
|
||||
m_control(0),
|
||||
m_tdr(0),
|
||||
m_irq_state(0),
|
||||
m_irq(0),
|
||||
m_txd(0),
|
||||
m_rxc(0),
|
||||
@ -35,8 +37,10 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d
|
||||
m_dsr(1),
|
||||
m_dcd(1),
|
||||
m_rxd(1),
|
||||
m_rx_clock(0),
|
||||
m_tx_state(STATE_START),
|
||||
m_tx_output(OUTPUT_MARK),
|
||||
m_tx_clock(0),
|
||||
m_tx_counter(0)
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user