blob: d260c4b3e834a4d191cbaa1d0f717c5a4ed55320 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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);
}
}
}
|