Ryujinx/ChocolArm64/Decoder/AOpCodeSimdRegElem.cs

32 lines
788 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)
{
switch (Size)
2018-02-05 00:08:20 +01:00
{
case 1:
Index = (OpCode >> 21) & 1 |
(OpCode >> 10) & 2 |
(OpCode >> 18) & 4;
Rm &= 0xf;
break;
case 2:
Index = (OpCode >> 21) & 1 |
(OpCode >> 10) & 2;
break;
default: Emitter = AInstEmit.Und; return;
2018-02-05 00:08:20 +01:00
}
}
}
}