mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-27 00:36:00 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
20 lines
659 B
C#
20 lines
659 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeT32AluRsImm : OpCodeT32Alu, IOpCode32AluRsImm
|
|
{
|
|
public int Rm { get; }
|
|
public int Immediate { get; }
|
|
|
|
public ShiftType ShiftType { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT32AluRsImm(inst, address, opCode);
|
|
|
|
public OpCodeT32AluRsImm(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
Rm = (opCode >> 0) & 0xf;
|
|
Immediate = ((opCode >> 6) & 3) | ((opCode >> 10) & 0x1c);
|
|
|
|
ShiftType = (ShiftType)((opCode >> 4) & 3);
|
|
}
|
|
}
|
|
}
|