mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 22:16:46 +00:00
24 lines
687 B
C#
24 lines
687 B
C#
|
using ChocolArm64.Instruction;
|
||
|
using ChocolArm64.State;
|
||
|
|
||
|
namespace ChocolArm64.Decoder
|
||
|
{
|
||
|
class AOpCodeAlu : AOpCode, IAOpCodeAlu
|
||
|
{
|
||
|
public int Rd { get; protected set; }
|
||
|
public int Rn { get; private set; }
|
||
|
|
||
|
public ADataOp DataOp { get; private set; }
|
||
|
|
||
|
public AOpCodeAlu(AInst Inst, long Position, int OpCode) : base(Inst, Position)
|
||
|
{
|
||
|
Rd = (OpCode >> 0) & 0x1f;
|
||
|
Rn = (OpCode >> 5) & 0x1f;
|
||
|
DataOp = (ADataOp)((OpCode >> 24) & 0x3);
|
||
|
|
||
|
RegisterSize = (OpCode >> 31) != 0
|
||
|
? ARegisterSize.Int64
|
||
|
: ARegisterSize.Int32;
|
||
|
}
|
||
|
}
|
||
|
}
|