OpCode32SimdCmpZ.cs 413 B

123456789101112131415
  1. namespace ARMeilleure.Decoders
  2. {
  3. class OpCode32SimdCmpZ : OpCode32Simd
  4. {
  5. public OpCode32SimdCmpZ(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
  6. {
  7. Size = (opCode >> 18) & 0x3;
  8. if (DecoderHelper.VectorArgumentsInvalid(Q, Vd, Vm))
  9. {
  10. Instruction = InstDescriptor.Undefined;
  11. }
  12. }
  13. }
  14. }