OpCodeSimdMemPair.cs 480 B

12345678910111213141516
  1. namespace ARMeilleure.Decoders
  2. {
  3. class OpCodeSimdMemPair : OpCodeMemPair, IOpCodeSimd
  4. {
  5. public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeSimdMemPair(inst, address, opCode);
  6. public OpCodeSimdMemPair(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
  7. {
  8. Size = ((opCode >> 30) & 3) + 2;
  9. Extend64 = false;
  10. DecodeImm(opCode);
  11. }
  12. }
  13. }