mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 23:40:18 +00:00
15 lines
486 B
C#
15 lines
486 B
C#
|
namespace ARMeilleure.Decoders
|
|||
|
{
|
|||
|
class OpCodeT16BReg : OpCodeT16, IOpCode32BReg
|
|||
|
{
|
|||
|
public int Rm { get; }
|
|||
|
|
|||
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeT16BReg(inst, address, opCode, inITBlock);
|
|||
|
|
|||
|
public OpCodeT16BReg(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|||
|
{
|
|||
|
Rm = (opCode >> 3) & 0xf;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|