mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-19 10:11:15 -05:00
Move solution and projects to src
This commit is contained in:
14
src/ARMeilleure/Decoders/OpCodeT16Exception.cs
Normal file
14
src/ARMeilleure/Decoders/OpCodeT16Exception.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
class OpCodeT16Exception : OpCodeT16, IOpCode32Exception
|
||||
{
|
||||
public int Id { get; }
|
||||
|
||||
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16Exception(inst, address, opCode);
|
||||
|
||||
public OpCodeT16Exception(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||||
{
|
||||
Id = opCode & 0xFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user