mirror of
https://github.com/holub/mame
synced 2025-05-11 16:48:52 +03:00
fixed uninitialized members in src/emu/machine/6522via.c (nw)
This commit is contained in:
parent
7d50e2df77
commit
75cb409fe1
@ -214,6 +214,9 @@ void via6522_device::device_start()
|
||||
m_t2 = timer_alloc(TIMER_T2);
|
||||
m_ca2_timer = timer_alloc(TIMER_CA2);
|
||||
m_shift_timer = timer_alloc(TIMER_SHIFT);
|
||||
m_pcr = 0;
|
||||
m_in_ca1 = 0;
|
||||
m_in_ca2 = 0;
|
||||
|
||||
/* Default clock is from CPU1 */
|
||||
if (clock() == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user