AOpCodeMemEx.cs 404 B

12345678910111213141516
  1. using ChocolArm64.Instruction;
  2. namespace ChocolArm64.Decoder
  3. {
  4. class AOpCodeMemEx : AOpCodeMem
  5. {
  6. public int Rt2 { get; private set; }
  7. public int Rs { get; private set; }
  8. public AOpCodeMemEx(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
  9. {
  10. Rt2 = (OpCode >> 10) & 0x1f;
  11. Rs = (OpCode >> 16) & 0x1f;
  12. }
  13. }
  14. }