mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 10:50:17 +00:00
28 lines
No EOL
1.1 KiB
C#
28 lines
No EOL
1.1 KiB
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeMemLit : OpCode, IOpCodeLit
|
|
{
|
|
public int Rt { get; }
|
|
public long Immediate { get; }
|
|
public int Size { get; }
|
|
public bool Signed { get; }
|
|
public bool Prefetch { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeMemLit(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeMemLit(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Rt = opCode & 0x1f;
|
|
|
|
Immediate = (long)address + DecoderHelper.DecodeImmS19_2(opCode);
|
|
|
|
switch ((opCode >> 30) & 3)
|
|
{
|
|
case 0: Size = 2; Signed = false; Prefetch = false; break;
|
|
case 1: Size = 3; Signed = false; Prefetch = false; break;
|
|
case 2: Size = 2; Signed = true; Prefetch = false; break;
|
|
case 3: Size = 0; Signed = false; Prefetch = true; break;
|
|
}
|
|
}
|
|
}
|
|
} |