| 1234567891011121314151617 |
- namespace ARMeilleure.Decoders
- {
- class OpCode32SimdCmpZ : OpCode32Simd
- {
- public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32SimdCmpZ(inst, address, opCode);
- public OpCode32SimdCmpZ(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
- {
- Size = (opCode >> 18) & 0x3;
- if (DecoderHelper.VectorArgumentsInvalid(Q, Vd, Vm))
- {
- Instruction = InstDescriptor.Undefined;
- }
- }
- }
- }
|