mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 06:23:17 +01:00
Shouldn't have undone this
This commit is contained in:
parent
7c314eadcf
commit
be1d01bf7d
@ -21,22 +21,13 @@ namespace ChocolArm64.Instruction
|
|||||||
|
|
||||||
public static void EmitAddsVCheck(AILEmitterCtx Context)
|
public static void EmitAddsVCheck(AILEmitterCtx Context)
|
||||||
{
|
{
|
||||||
//V = (Rd ^ Rn) & (Rd ^ Rm) & ~(Rn ^ Rm) < 0
|
//V = (Rd ^ Rn) & ~(Rn ^ Rm) < 0
|
||||||
Context.EmitSttmp();
|
Context.Emit(OpCodes.Dup);
|
||||||
Context.EmitLdtmp();
|
|
||||||
Context.EmitLdtmp();
|
|
||||||
|
|
||||||
EmitDataLoadRn(Context);
|
EmitDataLoadRn(Context);
|
||||||
|
|
||||||
Context.Emit(OpCodes.Xor);
|
Context.Emit(OpCodes.Xor);
|
||||||
|
|
||||||
Context.EmitLdtmp();
|
|
||||||
|
|
||||||
EmitDataLoadOper2(Context);
|
|
||||||
|
|
||||||
Context.Emit(OpCodes.Xor);
|
|
||||||
Context.Emit(OpCodes.And);
|
|
||||||
|
|
||||||
EmitDataLoadOpers(Context);
|
EmitDataLoadOpers(Context);
|
||||||
|
|
||||||
Context.Emit(OpCodes.Xor);
|
Context.Emit(OpCodes.Xor);
|
||||||
|
Loading…
Reference in New Issue
Block a user