summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-01-19 11:41:43 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-01-19 11:42:08 -0500
commitb685850e01b89c6ea14c9890ec2c885ee56d679e (patch)
treebd4f1615032e197ecaa68576a0d17fe165116929
parentb7968f73ec59182bcc03555ac00deb2658f063fb (diff)
z8: Add standard_irq_callback for the sake of debugging (nw)
-rw-r--r--src/devices/cpu/z8/z8.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/z8/z8.cpp b/src/devices/cpu/z8/z8.cpp
index 6e5906b9548..bc78fb016bc 100644
--- a/src/devices/cpu/z8/z8.cpp
+++ b/src/devices/cpu/z8/z8.cpp
@@ -1297,6 +1297,7 @@ void z8_device::take_interrupt(int irq)
// acknowledge the IRQ
m_irq &= ~(1 << irq);
+ standard_irq_callback(irq);
// get the interrupt vector address
uint16_t vector = irq * 2;