summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2022-04-07 16:21:41 +0200
committerGitHub <noreply@github.com>2022-04-07 16:21:41 +0200
commit50192eb4adfa59703d13c7b77797a4eb092d9301 (patch)
treef1d4f9e5eb519185d343ec0f92f7e50da8bbe1dc /src/core/hle/kernel
parentMerge pull request #8143 from merryhime/rdtsc (diff)
parentarm_dynarmic: Use HaltReason for svc calls and reschedules (diff)
downloadyuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar
yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.gz
yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.bz2
yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.lz
yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.xz
yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.zst
yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/physical_core.cpp1
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();
}