aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCode32MemImm.cs
blob: ca46e08f8792a0eab72b76efaba2212da7b20a1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using ChocolArm64.Instructions;

namespace ChocolArm64.Decoders
{
    class OpCode32MemImm : OpCode32Mem
    {
        public OpCode32MemImm(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            Imm = opCode & 0xfff;
        }
    }
}