mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
fixed uninitialized memory in src/emu/cpu/es5510/es5510.c (nw)
This commit is contained in:
parent
b8380495a6
commit
6b72c6d3de
@ -476,6 +476,9 @@ void es5510_device::device_reset() {
|
||||
instr_latch = UINT64(0);
|
||||
ram_sel = 0;
|
||||
host_control = 0;
|
||||
memset(&ram, 0, sizeof(ram_t));
|
||||
memset(&ram_p, 0, sizeof(ram_t));
|
||||
memset(&ram_pp, 0, sizeof(ram_t));
|
||||
}
|
||||
|
||||
const address_space_config *es5510_device::memory_space_config(address_spacenum spacenum) const {
|
||||
|
Loading…
Reference in New Issue
Block a user