mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 00:50:18 +00:00
14 lines
No EOL
475 B
C#
14 lines
No EOL
475 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeAluBinary : OpCodeAlu
|
|
{
|
|
public int Rm { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeAluBinary(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeAluBinary(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Rm = (opCode >> 16) & 0x1f;
|
|
}
|
|
}
|
|
} |