diff options
author | 2014-04-24 12:13:48 +0000 | |
---|---|---|
committer | 2014-04-24 12:13:48 +0000 | |
commit | f6930e92091f08246974149b6953e77afbed2037 (patch) | |
tree | 108db74c2bb31d5d27f48a08cc93dedc4f90dd18 /src/emu/machine/mos6551.c | |
parent | 99722af3a64dadd8fc8de917850b8fc86a9e3600 (diff) |
fixed usage of uninitialized members in mos6551_device (nw)
Diffstat (limited to 'src/emu/machine/mos6551.c')
-rw-r--r-- | src/emu/machine/mos6551.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/machine/mos6551.c b/src/emu/machine/mos6551.c index 778ca20206e..84142bb41c2 100644 --- a/src/emu/machine/mos6551.c +++ b/src/emu/machine/mos6551.c @@ -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), |