1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-04-23 18:30:17 -05:00

Fix RET Xn translation (#1242)

This commit is contained in:
Ficture Seven 2020-05-14 08:50:35 +04:00 committed by GitHub
parent 96c7988671
commit 430a48338b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);