mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 05:34:42 +01:00
A32/ir_emitter: Bug fix: IREmitter::ExceptionRaised using incorrect opcode
This commit is contained in:
parent
ff3805e332
commit
5fc197c564
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ void IREmitter::CallSupervisor(const IR::U32& value) {
|
|||
}
|
||||
|
||||
void IREmitter::ExceptionRaised(const Exception exception) {
|
||||
Inst(Opcode::A64ExceptionRaised, Imm32(PC()), Imm64(static_cast<u64>(exception)));
|
||||
Inst(Opcode::A32ExceptionRaised, Imm32(PC()), Imm64(static_cast<u64>(exception)));
|
||||
}
|
||||
|
||||
IR::U32 IREmitter::GetCpsr() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue