mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
MOS 6551 Fixed uninitialised variable that could prevent transmit irq from being generated after reset. [smf]
This commit is contained in:
parent
b244eb8570
commit
ba8ba29bb5
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user