{a32,a64}_interface: Clear exclusive state during an exceptional exit
This is normally done by the ERET instruction during a service call.
This commit is contained in:
parent
c788bcdf17
commit
9ab83180db
2 changed files with 2 additions and 0 deletions
|
@ -90,6 +90,7 @@ struct Jit::Impl {
|
|||
}
|
||||
|
||||
void ExceptionalExit() {
|
||||
ClearExclusiveState();
|
||||
if (!conf.wall_clock_cntpct) {
|
||||
const s64 ticks = jit_state.cycles_to_run - jit_state.cycles_remaining;
|
||||
conf.callbacks->AddTicks(ticks);
|
||||
|
|
|
@ -88,6 +88,7 @@ public:
|
|||
}
|
||||
|
||||
void ExceptionalExit() {
|
||||
ClearExclusiveState();
|
||||
if (!conf.wall_clock_cntpct) {
|
||||
const s64 ticks = jit_state.cycles_to_run - jit_state.cycles_remaining;
|
||||
conf.callbacks->AddTicks(ticks);
|
||||
|
|
Loading…
Reference in a new issue