mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 13:50:17 +00:00
14 lines
486 B
C#
14 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;
|
|
}
|
|
}
|
|
}
|