OpCodeSimdReg.cs 492 B

12345678910111213141516
  1. namespace ARMeilleure.Decoders
  2. {
  3. class OpCodeSimdReg : OpCodeSimd
  4. {
  5. public bool Bit3 { get; private set; }
  6. public int Ra { get; private set; }
  7. public int Rm { get; protected set; }
  8. public OpCodeSimdReg(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
  9. {
  10. Bit3 = ((opCode >> 3) & 0x1) != 0;
  11. Ra = (opCode >> 10) & 0x1f;
  12. Rm = (opCode >> 16) & 0x1f;
  13. }
  14. }
  15. }