mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-08 01:36:28 +00:00
A64: Add ClearExclusiveState method
This commit is contained in:
@@ -167,6 +167,10 @@ public:
|
||||
jit_state.SetPstate(value);
|
||||
}
|
||||
|
||||
void ClearExclusiveState() {
|
||||
jit_state.exclusive_state = 0;
|
||||
}
|
||||
|
||||
bool IsExecuting() const {
|
||||
return is_executing;
|
||||
}
|
||||
@@ -338,6 +342,10 @@ void Jit::SetPstate(u32 value) {
|
||||
impl->SetPstate(value);
|
||||
}
|
||||
|
||||
void Jit::ClearExclusiveState() {
|
||||
impl->ClearExclusiveState();
|
||||
}
|
||||
|
||||
bool Jit::IsExecuting() const {
|
||||
return impl->IsExecuting();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user