mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
25 lines
713 B
C#
25 lines
713 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT16AddSubImm3 : OpCodeT16, IOpCode32AluImm
|
|
{
|
|
public int Rd { get; }
|
|
public int Rn { get; }
|
|
|
|
public bool? SetFlags => null;
|
|
|
|
public int Immediate { get; }
|
|
|
|
public bool IsRotated { get; }
|
|
|
|
public static new OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16AddSubImm3(inst, address, opCode);
|
|
|
|
public OpCodeT16AddSubImm3(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
Rd = (opCode >> 0) & 0x7;
|
|
Rn = (opCode >> 3) & 0x7;
|
|
Immediate = (opCode >> 6) & 0x7;
|
|
IsRotated = false;
|
|
}
|
|
}
|
|
}
|