From 29f426da377d24b41ec24c1bc4351a09eccb0977 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 4 Feb 2017 22:36:57 +1100 Subject: [PATCH] whoops, that's important (nw) --- src/devices/cpu/m6805/m68705.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/cpu/m6805/m68705.cpp b/src/devices/cpu/m6805/m68705.cpp index bcb2d1a858b..d9af12aff3c 100644 --- a/src/devices/cpu/m6805/m68705.cpp +++ b/src/devices/cpu/m6805/m68705.cpp @@ -584,6 +584,7 @@ void m68705_device::interrupt() if (BIT(m_pending_interrupts, M68705_IRQ_LINE)) { LOGINT("servicing /INT interrupt\n"); + m_irq_latch = 0; m_pending_interrupts &= ~(1 << M68705_IRQ_LINE); rm16(M68705_VECTOR_INT, m_pc); }