mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:18:40 +00:00
16 lines
396 B
C#
16 lines
396 B
C#
using ChocolArm64.Instruction;
|
|
|
|
namespace ChocolArm64.Decoder
|
|
{
|
|
class AOpCodeMul : AOpCodeAlu
|
|
{
|
|
public int Rm { get; private set; }
|
|
public int Ra { get; private set; }
|
|
|
|
public AOpCodeMul(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
|
|
{
|
|
Ra = (OpCode >> 10) & 0x1f;
|
|
Rm = (OpCode >> 16) & 0x1f;
|
|
}
|
|
}
|
|
} |