mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 17:30:17 +00:00
22 lines
No EOL
697 B
C#
22 lines
No EOL
697 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT16AluUx : OpCodeT16, IOpCode32AluUx
|
|
{
|
|
public int Rm { get; }
|
|
public int Rd { get; }
|
|
public int Rn { get; }
|
|
|
|
public bool SetFlags => false;
|
|
|
|
public int RotateBits => 0;
|
|
public bool Add => false;
|
|
|
|
public static new OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeT16AluUx(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeT16AluUx(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Rd = (opCode >> 0) & 0x7;
|
|
Rm = (opCode >> 3) & 0x7;
|
|
}
|
|
}
|
|
} |