mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
fixed uninitialized memory in src/emu/video/i8275x.c (nw)
This commit is contained in:
parent
3055378a38
commit
597e390d0d
@ -169,6 +169,8 @@ void i8275x_device::device_start()
|
|||||||
|
|
||||||
void i8275x_device::device_reset()
|
void i8275x_device::device_reset()
|
||||||
{
|
{
|
||||||
|
memset(m_buffer, 0, sizeof(m_buffer));
|
||||||
|
|
||||||
m_status &= ~ST_IE;
|
m_status &= ~ST_IE;
|
||||||
|
|
||||||
m_out_irq_func(CLEAR_LINE);
|
m_out_irq_func(CLEAR_LINE);
|
||||||
|
Loading…
Reference in New Issue
Block a user