aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeSimdMemPair64.cs
blob: 1b796742e340d22cde73045c7eb78e7d1c00387d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using ChocolArm64.Instructions;

namespace ChocolArm64.Decoders
{
    class OpCodeSimdMemPair64 : OpCodeMemPair64, IOpCodeSimd64
    {
        public OpCodeSimdMemPair64(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            Size = ((opCode >> 30) & 3) + 2;

            Extend64 = false;

            DecodeImm(opCode);
        }
    }
}