mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 22:10:18 +00:00
12 lines
No EOL
446 B
C#
12 lines
No EOL
446 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeSimdTbl : OpCodeSimdReg
|
|
{
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeSimdTbl(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeSimdTbl(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Size = ((opCode >> 13) & 3) + 1;
|
|
}
|
|
}
|
|
} |