Ryujinx/ChocolArm64/Decoder/AOpCodeSimdRegElem.cs

22 lines
534 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using ChocolArm64.Instruction;
namespace ChocolArm64.Decoder
{
class AOpCodeSimdRegElem : AOpCodeSimdReg
2018-02-05 00:08:20 +01:00
{
public int Index { get; private set; }
public AOpCodeSimdRegElem(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
{
if ((Size & 1) != 0)
2018-02-05 00:08:20 +01:00
{
Index = (OpCode >> 11) & 1;
}
else
{
Index = (OpCode >> 21) & 1 |
(OpCode >> 10) & 2;
}
}
}
}