OpCodeSimdTbl64.cs 288 B

123456789101112
  1. using ChocolArm64.Instructions;
  2. namespace ChocolArm64.Decoders
  3. {
  4. class OpCodeSimdTbl64 : OpCodeSimdReg64
  5. {
  6. public OpCodeSimdTbl64(Inst inst, long position, int opCode) : base(inst, position, opCode)
  7. {
  8. Size = ((opCode >> 13) & 3) + 1;
  9. }
  10. }
  11. }