1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-06 06:16:32 -05:00

dynarmic: Better interrupts

This commit is contained in:
merry
2022-04-03 16:29:05 +01:00
parent 51a8dd4919
commit f8b8af47ad
7 changed files with 28 additions and 23 deletions

View File

@@ -58,6 +58,7 @@ bool PhysicalCore::IsInterrupted() const {
void PhysicalCore::Interrupt() {
guard->lock();
interrupts[core_index].SetInterrupt(true);
arm_interface->SignalInterrupt();
guard->unlock();
}