mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 03:30:19 +00:00
14 lines
No EOL
453 B
C#
14 lines
No EOL
453 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT16 : OpCode32
|
|
{
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeT16(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeT16(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Cond = Condition.Al;
|
|
|
|
OpCodeSizeInBytes = 2;
|
|
}
|
|
}
|
|
} |