1
0
forked from MeloNX/MeloNX

Fix RET Xn translation (#1242)

This commit is contained in:
Ficture Seven 2020-05-14 08:50:35 +04:00 committed by GitHub
parent 3b9b4f1931
commit 8e407d224e

View File

@ -71,7 +71,9 @@ namespace ARMeilleure.Instructions
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);