mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-04 23:13:04 +00:00
28 lines
791 B
C#
28 lines
791 B
C#
using ARMeilleure.State;
|
|
|
|
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT16MemSp : OpCodeT16, IOpCode32Mem
|
|
{
|
|
public int Rt { get; }
|
|
public int Rn => RegisterAlias.Aarch32Sp;
|
|
|
|
public bool WBack => false;
|
|
public bool IsLoad { get; }
|
|
public bool Index => true;
|
|
public bool Add => true;
|
|
|
|
public int Immediate { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16MemSp(inst, address, opCode);
|
|
|
|
public OpCodeT16MemSp(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
Rt = (opCode >> 8) & 7;
|
|
|
|
IsLoad = ((opCode >> 11) & 1) != 0;
|
|
|
|
Immediate = ((opCode >> 0) & 0xff) << 2;
|
|
}
|
|
}
|
|
}
|