fixed usage of uninitialized members in mos6551_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-24 12:13:48 +00:00
parent 99722af3a6
commit f6930e9209

View File

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