OpCodeCcmpReg64.cs 359 B

123456789101112131415
  1. using ChocolArm64.Instructions;
  2. namespace ChocolArm64.Decoders
  3. {
  4. class OpCodeCcmpReg64 : OpCodeCcmp64, IOpCodeAluRs64
  5. {
  6. public int Rm => RmImm;
  7. public int Shift => 0;
  8. public ShiftType ShiftType => ShiftType.Lsl;
  9. public OpCodeCcmpReg64(Inst inst, long position, int opCode) : base(inst, position, opCode) { }
  10. }
  11. }