hphybrid: hopefully fixed a super-subtle race condition in 9845T video hw.

This commit is contained in:
fulivi 2017-04-13 11:03:01 +02:00
parent 8eedab96df
commit 4e8e8167ed

View File

@ -231,10 +231,10 @@ void hp_hybrid_cpu_device::execute_run()
} else { } else {
debugger_instruction_hook(this, m_genpc); debugger_instruction_hook(this, m_genpc);
m_reg_I = execute_one(m_reg_I);
// Check for interrupts // Check for interrupts
check_for_interrupts(); check_for_interrupts();
m_reg_I = execute_one(m_reg_I);
} }
} while (m_icount > 0); } while (m_icount > 0);
} }