fixed uninitialized variables in src/emu/machine/am9517a.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 16:28:25 +00:00
parent 625ebcebb8
commit c0d9fc2c1e

View File

@ -466,6 +466,8 @@ void am9517a_device::device_reset()
m_msb = 0;
m_current_channel = -1;
m_last_channel = 3;
m_hreq = -1;
m_eop = 0;
set_hreq(0);
set_eop(ASSERT_LINE);