namespace ARMeilleure.Decoders { class OpCode32SimdSel : OpCode32SimdRegS { public OpCode32SimdSelMode Cc { get; } public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCode32SimdSel(inst, address, opCode, inITBlock); public OpCode32SimdSel(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock) { Cc = (OpCode32SimdSelMode)((opCode >> 20) & 3); } } enum OpCode32SimdSelMode : int { Eq = 0, Vs, Ge, Gt } }