fixed uninitialized memory in src/emu/video/i8275x.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-22 20:25:27 +00:00
parent 3055378a38
commit 597e390d0d

View File

@ -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);