Explorar el Código

Fix wrong type on CMTST instruction

gdkchan hace 8 años
padre
commit
30829fce52
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      ChocolArm64/Instruction/AInstEmitSimdCmp.cs

+ 1 - 1
ChocolArm64/Instruction/AInstEmitSimdCmp.cs

@@ -79,7 +79,7 @@ namespace ChocolArm64.Instruction
 
                 Context.Emit(OpCodes.And);
 
-                Context.EmitLdc_I4(0);
+                Context.EmitLdc_I8(0);
 
                 Context.Emit(OpCodes.Bne_Un_S, LblTrue);