aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeT16AluImm8.cs
blob: 52c059f40eff0e5638596970be17f1c3aaf561de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using ChocolArm64.Instructions;

namespace ChocolArm64.Decoders
{
    class OpCodeT16AluImm8 : OpCodeT16, IOpCode32Alu
    {
        private int _rdn;

        public int Rd => _rdn;
        public int Rn => _rdn;

        public bool SetFlags => false;

        public int Imm { get; private set; }

        public OpCodeT16AluImm8(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            Imm  = (opCode >> 0) & 0xff;
            _rdn = (opCode >> 8) & 0x7;
        }
    }
}