mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
15 lines
429 B
C#
15 lines
429 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT16BReg : OpCodeT16, IOpCode32BReg
|
|
{
|
|
public int Rm { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16BReg(inst, address, opCode);
|
|
|
|
public OpCodeT16BReg(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
Rm = (opCode >> 3) & 0xf;
|
|
}
|
|
}
|
|
}
|