Ryujinx/ARMeilleure/Decoders/OpCodeT16Adr.cs

21 lines
600 B
C#
Raw Normal View History

2022-02-11 10:58:45 +00:00
namespace ARMeilleure.Decoders
{
class OpCodeT16Adr : OpCodeT16, IOpCode32Adr
{
public int Rd { get; }
public bool Add => true;
public int Immediate { get; }
2022-02-14 21:06:24 +00:00
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16Adr(inst, address, opCode);
2022-02-11 10:58:45 +00:00
2022-02-14 21:06:24 +00:00
public OpCodeT16Adr(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
2022-02-11 10:58:45 +00:00
{
Rd = (opCode >> 8) & 7;
int imm = (opCode & 0xff) << 2;
Immediate = (int)(GetPc() & 0xfffffffc) + imm;
}
}
}