Files
the-beast-roofer-edition/Ryujinx/Cpu/Decoder/AOpCodeException.cs
T

14 lines
314 B
C#

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)
{
Id = (OpCode >> 5) & 0xffff;
}
}
}