mirror of
https://git.ryujinx.app/archive/ryujinx-mirror.git
synced 2025-10-05 02:12:59 +00:00
12 lines
No EOL
284 B
C#
12 lines
No EOL
284 B
C#
using ChocolArm64.Instruction;
|
|
|
|
namespace ChocolArm64.Decoder
|
|
{
|
|
class AOpCodeSimdTbl : AOpCodeSimdReg
|
|
{
|
|
public AOpCodeSimdTbl(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
|
|
{
|
|
Size = ((OpCode >> 13) & 3) + 1;
|
|
}
|
|
}
|
|
} |