mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
fixed uninitialized variables in src/emu/machine/6532riot.c (nw)
This commit is contained in:
parent
87eefcc345
commit
72fca09e53
1 changed files with 2 additions and 0 deletions
|
@ -524,8 +524,10 @@ void riot6532_device::device_start()
|
|||
void riot6532_device::device_reset()
|
||||
{
|
||||
/* reset I/O states */
|
||||
m_port[0].m_in = 0;
|
||||
m_port[0].m_out = 0;
|
||||
m_port[0].m_ddr = 0;
|
||||
m_port[1].m_in = 0;
|
||||
m_port[1].m_out = 0;
|
||||
m_port[1].m_ddr = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue