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

namespace ChocolArm64.Decoders
{
    class OpCodeException64 : OpCode64
    {
        public int Id { get; private set; }

        public OpCodeException64(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            Id = (opCode >> 5) & 0xffff;
        }
    }
}