OpCode32SimdRegElemLong.cs 544 B

12345678910111213141516171819
  1. namespace ARMeilleure.Decoders
  2. {
  3. class OpCode32SimdRegElemLong : OpCode32SimdRegElem
  4. {
  5. public OpCode32SimdRegElemLong(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
  6. {
  7. Q = false;
  8. F = false;
  9. RegisterSize = RegisterSize.Simd64;
  10. // (Vd & 1) != 0 || Size == 3 are also invalid, but they are checked on encoding.
  11. if (Size == 0)
  12. {
  13. Instruction = InstDescriptor.Undefined;
  14. }
  15. }
  16. }
  17. }