fixed usage of uninitialized member in mcs51_cpu_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-24 07:09:19 +00:00
parent e2aa99dd5a
commit 17af52bfdb

View File

@ -2313,6 +2313,8 @@ void mcs51_cpu_device::device_reset()
m_uart.tx_clk = 0;
m_uart.bits_to_send = 0;
m_uart.delay_cycles = 0;
m_recalc_parity = 0;
}