MOS 6551 Fixed uninitialised variable that could prevent transmit irq from being generated after reset. [smf]

This commit is contained in:
smf- 2014-04-15 17:08:23 +00:00
parent b244eb8570
commit ba8ba29bb5

View File

@ -34,7 +34,9 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d
m_dsr(1),
m_dcd(1),
m_rxd(1),
m_tx_output(OUTPUT_MARK)
m_tx_state(STATE_START),
m_tx_output(OUTPUT_MARK),
m_tx_counter(0)
{
}