diff options
Diffstat (limited to 'ARMeilleure/State/InstExceptionEventArgs.cs')
-rw-r--r-- | ARMeilleure/State/InstExceptionEventArgs.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ARMeilleure/State/InstExceptionEventArgs.cs b/ARMeilleure/State/InstExceptionEventArgs.cs new file mode 100644 index 00000000..c2460e4b --- /dev/null +++ b/ARMeilleure/State/InstExceptionEventArgs.cs @@ -0,0 +1,16 @@ +using System; + +namespace ARMeilleure.State +{ + public class InstExceptionEventArgs : EventArgs + { + public ulong Address { get; } + public int Id { get; } + + public InstExceptionEventArgs(ulong address, int id) + { + Address = address; + Id = id; + } + } +}
\ No newline at end of file |