mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
fixed more uninitialized members in src/emu/machine/am9517a.c (nw)
This commit is contained in:
parent
028cc2eec1
commit
b9c91faa61
@ -433,6 +433,11 @@ void am9517a_device::device_start()
|
|||||||
m_channel[i].m_in_ior_func.resolve(m_in_ior_cb[i], *this);
|
m_channel[i].m_in_ior_func.resolve(m_in_ior_cb[i], *this);
|
||||||
m_channel[i].m_out_iow_func.resolve(m_out_iow_cb[i], *this);
|
m_channel[i].m_out_iow_func.resolve(m_out_iow_cb[i], *this);
|
||||||
m_channel[i].m_out_dack_func.resolve(m_out_dack_cb[i], *this);
|
m_channel[i].m_out_dack_func.resolve(m_out_dack_cb[i], *this);
|
||||||
|
m_channel[i].m_address = 0;
|
||||||
|
m_channel[i].m_count = 0;
|
||||||
|
m_channel[i].m_base_address = 0;
|
||||||
|
m_channel[i].m_base_count = 0;
|
||||||
|
m_channel[i].m_mode = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// state saving
|
// state saving
|
||||||
|
Loading…
Reference in New Issue
Block a user