17 lines
389 B
C#
17 lines
389 B
C#
|
using ARMeilleure.Common;
|
||
|
|
||
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
class OpCodeSimdShImm : OpCodeSimd
|
||
|
{
|
||
|
public int Imm { get; private set; }
|
||
|
|
||
|
public OpCodeSimdShImm(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||
|
{
|
||
|
Imm = (opCode >> 16) & 0x7f;
|
||
|
|
||
|
Size = BitUtils.HighestBitSetNibble(Imm >> 3);
|
||
|
}
|
||
|
}
|
||
|
}
|