forked from Mirror/Ryujinx
Fix RET Xn translation (#1242)
This commit is contained in:
parent
96c7988671
commit
430a48338b
1 changed files with 3 additions and 1 deletions
|
@ -71,7 +71,9 @@ namespace ARMeilleure.Instructions
|
||||||
|
|
||||||
public static void Ret(ArmEmitterContext context)
|
public static void Ret(ArmEmitterContext context)
|
||||||
{
|
{
|
||||||
context.Return(GetIntOrZR(context, RegisterAlias.Lr));
|
OpCodeBReg op = (OpCodeBReg)context.CurrOp;
|
||||||
|
|
||||||
|
context.Return(GetIntOrZR(context, op.Rn));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Tbnz(ArmEmitterContext context) => EmitTb(context, onNotZero: true);
|
public static void Tbnz(ArmEmitterContext context) => EmitTb(context, onNotZero: true);
|
||||||
|
|
Loading…
Reference in a new issue