From 78fe4f9702405b118debdfc2224f0a540843dc04 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 20 May 2021 12:33:07 -0400 Subject: hd6120: Don't clear INTGNT after an external IOT when executing in panel mode --- src/devices/cpu/pdp8/hd6120.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/pdp8/hd6120.cpp b/src/devices/cpu/pdp8/hd6120.cpp index 48134d00dd5..ec72498d272 100644 --- a/src/devices/cpu/pdp8/hd6120.cpp +++ b/src/devices/cpu/pdp8/hd6120.cpp @@ -1258,7 +1258,7 @@ void hd6120_device::execute_run() break; case minor_state::EXTIOT_5: - if (m_intgnt) + if (m_intgnt && m_if < 010) { m_intgnt = false; m_intgnt_callback(1); -- cgit v1.2.3