From 4e8e8167ed2a09582cfcb04f7b33c834183c2ff1 Mon Sep 17 00:00:00 2001 From: fulivi Date: Thu, 13 Apr 2017 11:03:01 +0200 Subject: [PATCH] hphybrid: hopefully fixed a super-subtle race condition in 9845T video hw. --- src/devices/cpu/hphybrid/hphybrid.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/hphybrid/hphybrid.cpp b/src/devices/cpu/hphybrid/hphybrid.cpp index f3e73ba938a..08db689b177 100644 --- a/src/devices/cpu/hphybrid/hphybrid.cpp +++ b/src/devices/cpu/hphybrid/hphybrid.cpp @@ -231,10 +231,10 @@ void hp_hybrid_cpu_device::execute_run() } else { debugger_instruction_hook(this, m_genpc); + m_reg_I = execute_one(m_reg_I); + // Check for interrupts check_for_interrupts(); - - m_reg_I = execute_one(m_reg_I); } } while (m_icount > 0); }