aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Decoders/OpCodeT32MemStEx.cs
blob: 6a0a6bb13443f5c4bd9aa3b9bd054fbb7e38d8d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace ARMeilleure.Decoders
{
    class OpCodeT32MemStEx : OpCodeT32, IOpCode32MemEx
    {
        public int Rd { get; }
        public int Rt { get; }
        public int Rt2 { get; }
        public int Rn { get; }

        public bool WBack => false;
        public bool IsLoad => false;
        public bool Index => false;
        public bool Add => false;

        public int Immediate => 0;

        public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT32MemStEx(inst, address, opCode);

        public OpCodeT32MemStEx(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
        {
            Rd = (opCode >> 0) & 0xf;
            Rt2 = (opCode >> 8) & 0xf;
            Rt = (opCode >> 12) & 0xf;
            Rn = (opCode >> 16) & 0xf;
        }
    }
}