mirror of
https://github.com/holub/mame
synced 2025-05-01 20:27:02 +03:00
fixed uninitialized variables in src/emu/machine/6532riot.c (nw)
This commit is contained in:
parent
87eefcc345
commit
72fca09e53
@ -524,8 +524,10 @@ void riot6532_device::device_start()
|
|||||||
void riot6532_device::device_reset()
|
void riot6532_device::device_reset()
|
||||||
{
|
{
|
||||||
/* reset I/O states */
|
/* reset I/O states */
|
||||||
|
m_port[0].m_in = 0;
|
||||||
m_port[0].m_out = 0;
|
m_port[0].m_out = 0;
|
||||||
m_port[0].m_ddr = 0;
|
m_port[0].m_ddr = 0;
|
||||||
|
m_port[1].m_in = 0;
|
||||||
m_port[1].m_out = 0;
|
m_port[1].m_out = 0;
|
||||||
m_port[1].m_ddr = 0;
|
m_port[1].m_ddr = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user