blob: 3a7ef6ababfa32ef145d9810cc6e7cf887ed2a19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace ARMeilleure.Decoders
{
class OpCodeSimdTbl : OpCodeSimdReg
{
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeSimdTbl(inst, address, opCode);
public OpCodeSimdTbl(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
{
Size = ((opCode >> 13) & 3) + 1;
}
}
}
|