mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-30 22:30:32 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
27 lines
837 B
C#
27 lines
837 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT16MemReg : OpCodeT16, IOpCode32MemReg
|
|
{
|
|
public int Rm { get; }
|
|
public int Rt { get; }
|
|
public int Rn { get; }
|
|
|
|
public bool WBack => false;
|
|
public bool IsLoad { get; }
|
|
public bool Index => true;
|
|
public bool Add => true;
|
|
|
|
public int Immediate => throw new System.InvalidOperationException();
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16MemReg(inst, address, opCode);
|
|
|
|
public OpCodeT16MemReg(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
Rt = (opCode >> 0) & 7;
|
|
Rn = (opCode >> 3) & 7;
|
|
Rm = (opCode >> 6) & 7;
|
|
|
|
IsLoad = ((opCode >> 9) & 7) >= 3;
|
|
}
|
|
}
|
|
}
|