From 06e9ab68195609df448de6178db147ec5e7c2563 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 20 Oct 2022 09:26:28 -0400 Subject: v25: Call exception hook on bankswitch interrupt --- src/devices/cpu/nec/v25.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/devices/cpu/nec/v25.cpp b/src/devices/cpu/nec/v25.cpp index 4b24f752623..321db738a04 100644 --- a/src/devices/cpu/nec/v25.cpp +++ b/src/devices/cpu/nec/v25.cpp @@ -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); } -- cgit v1.2.3