diff options
| author | merry <git@mary.rs> | 2022-04-03 16:29:05 +0100 |
|---|---|---|
| committer | merry <git@mary.rs> | 2022-04-03 16:39:48 +0100 |
| commit | f8b8af47ad9d414ce19c4801d702a6c52ae6e82e (patch) | |
| tree | 82c0d1add6ea0cb37f9cb3d4ed26cc1860611eb2 /src/core/hle/kernel | |
| parent | 51a8dd49193a7270413c2f0dc447dd3430b63379 (diff) | |
dynarmic: Better interrupts
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/physical_core.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/physical_core.cpp b/src/core/hle/kernel/physical_core.cpp index 7477668e4..18a5f40f8 100644 --- a/src/core/hle/kernel/physical_core.cpp +++ b/src/core/hle/kernel/physical_core.cpp @@ -58,6 +58,7 @@ bool PhysicalCore::IsInterrupted() const { void PhysicalCore::Interrupt() { guard->lock(); interrupts[core_index].SetInterrupt(true); + arm_interface->SignalInterrupt(); guard->unlock(); } |
