1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using ChocolArm64.Instructions; namespace ChocolArm64.Decoders32 { class A32OpCodeBImmAl : A32OpCode { public int Imm; public int H; public A32OpCodeBImmAl(Inst inst, long position, int opCode) : base(inst, position, opCode) { Imm = (opCode << 8) >> 6; H = (opCode >> 23) & 2; } } }