aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs
blob: c4a196b63ebf6e59a61cb81843d32c5979fbd88d (plain) (blame)
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;
        }
    }
}