v25: Call exception hook on bankswitch interrupt

This commit is contained in:
AJR 2022-10-20 09:26:28 -04:00
parent 44cfa0c2f6
commit 06e9ab6819

View File

@ -451,7 +451,10 @@ void v25_common_device::external_int()
m_IRQS = vector;
m_ISPR |= (1 << i);
if (m_bankswitch_irq & source)
{
debugger_exception_hook(vector);
nec_bankswitch(i);
}
else
nec_interrupt(vector, source);
}