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

namespace ChocolArm64.Decoders
{
    class OpCodeCcmpReg64 : OpCodeCcmp64, IOpCodeAluRs64
    {
        public int Rm => RmImm;

        public int Shift => 0;

        public ShiftType ShiftType => ShiftType.Lsl;

        public OpCodeCcmpReg64(Inst inst, long position, int opCode) : base(inst, position, opCode) { }
    }
}