2018-02-10 18:20:46 +01:00
|
|
|
using System;
|
|
|
|
|
2018-02-26 02:14:58 +01:00
|
|
|
namespace ChocolArm64.Events
|
2018-02-10 18:20:46 +01:00
|
|
|
{
|
2018-02-26 02:14:58 +01:00
|
|
|
public class AInstUndefinedEventArgs : EventArgs
|
2018-02-10 18:20:46 +01:00
|
|
|
{
|
|
|
|
public long Position { get; private set; }
|
|
|
|
public int RawOpCode { get; private set; }
|
|
|
|
|
2018-02-26 02:14:58 +01:00
|
|
|
public AInstUndefinedEventArgs(long Position, int RawOpCode)
|
2018-02-10 18:20:46 +01:00
|
|
|
{
|
|
|
|
this.Position = Position;
|
|
|
|
this.RawOpCode = RawOpCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|