mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 14:00:19 +00:00
14 lines
No EOL
473 B
C#
14 lines
No EOL
473 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeException : OpCode
|
|
{
|
|
public int Id { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeException(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeException(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Id = (opCode >> 5) & 0xffff;
|
|
}
|
|
}
|
|
} |