mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
h8_intc: don't clear irq pin inputs at reset
This commit is contained in:
parent
ecd1a49b2e
commit
14daf14a87
@ -54,8 +54,9 @@ void h8_intc_device::device_reset()
|
||||
memset(m_irq_type, 0, sizeof(m_irq_type));
|
||||
m_nmi_type = EDGE_FALL;
|
||||
memset(m_pending_irqs, 0, sizeof(m_pending_irqs));
|
||||
m_ier = m_isr = m_irq_input = 0x00;
|
||||
m_iscr = 0x0000;
|
||||
m_ier = m_isr = 0x00;
|
||||
check_level_irqs(false);
|
||||
}
|
||||
|
||||
int h8_intc_device::interrupt_taken(int vector)
|
||||
|
Loading…
Reference in New Issue
Block a user