aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Cpu/Decoder/AOpCodeException.cs
blob: 4579c1a7b9c908daa283591e6572973fda89315c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using ChocolArm64.Instruction;

namespace ChocolArm64.Decoder
{
    class AOpCodeException : AOpCode
    {
        public int Id { get; private set; }

        public AOpCodeException(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
        {
            Id = (OpCode >> 5) & 0xffff;
        }
    }
}