InstUndefinedEventArgs.cs 373 B

12345678910111213141516
  1. using System;
  2. namespace ChocolArm64.Events
  3. {
  4. public class InstUndefinedEventArgs : EventArgs
  5. {
  6. public long Position { get; private set; }
  7. public int RawOpCode { get; private set; }
  8. public InstUndefinedEventArgs(long position, int rawOpCode)
  9. {
  10. Position = position;
  11. RawOpCode = rawOpCode;
  12. }
  13. }
  14. }