mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-26 01:58:41 +00:00
A32/ir_emitter: Implement UpdateUpperLocationDescriptor
This commit is contained in:
@@ -121,6 +121,10 @@ void IREmitter::LoadWritePC(const IR::U32& value) {
|
||||
}
|
||||
}
|
||||
|
||||
void IREmitter::UpdateUpperLocationDescriptor() {
|
||||
Inst(Opcode::A32UpdateUpperLocationDescriptor);
|
||||
}
|
||||
|
||||
void IREmitter::CallSupervisor(const IR::U32& value) {
|
||||
Inst(Opcode::A32CallSupervisor, value);
|
||||
}
|
||||
|
||||
@@ -47,6 +47,7 @@ public:
|
||||
void BranchWritePC(const IR::U32& value);
|
||||
void BXWritePC(const IR::U32& value);
|
||||
void LoadWritePC(const IR::U32& value);
|
||||
void UpdateUpperLocationDescriptor();
|
||||
|
||||
void CallSupervisor(const IR::U32& value);
|
||||
void ExceptionRaised(Exception exception);
|
||||
|
||||
Reference in New Issue
Block a user