fixed uninitialized variables in src/emu/machine/tms9902.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 16:15:23 +00:00
parent 376a931588
commit 14778fc9c1

View File

@ -547,6 +547,10 @@ void tms9902_device::reset_uart()
m_BRKON = false;
m_BRKout = false;
m_DSCH = false;
m_TIMELP = false;
m_INT = false;
m_TMR = 0;
m_STOPB = 0;
m_RCL = 0;