OpCodeMemEx64.cs 408 B

12345678910111213141516
  1. using ChocolArm64.Instructions;
  2. namespace ChocolArm64.Decoders
  3. {
  4. class OpCodeMemEx64 : OpCodeMem64
  5. {
  6. public int Rt2 { get; private set; }
  7. public int Rs { get; private set; }
  8. public OpCodeMemEx64(Inst inst, long position, int opCode) : base(inst, position, opCode)
  9. {
  10. Rt2 = (opCode >> 10) & 0x1f;
  11. Rs = (opCode >> 16) & 0x1f;
  12. }
  13. }
  14. }