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

namespace ChocolArm64.Decoders32
{
    class A32OpCode : OpCode64
    {
        public Cond Cond { get; private set; }

        public A32OpCode(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            Cond = (Cond)((uint)opCode >> 28);
        }
    }
}