fixed usage of uninitialized members in mos6551_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-24 04:25:00 +00:00
parent c45fffdb51
commit ee88522aba

View File

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