| 12345678910111213141516 |
- 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);
- }
- }
- }
|