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