namespace ARMeilleure.Decoders { class OpCodeBImmTest : OpCodeBImm { public int Rt { get; } public int Bit { get; } public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeBImmTest(inst, address, opCode, inITBlock); public OpCodeBImmTest(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock) { Rt = opCode & 0x1f; Immediate = (long)address + DecoderHelper.DecodeImmS14_2(opCode); Bit = (opCode >> 19) & 0x1f; Bit |= (opCode >> 26) & 0x20; } } }