aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/State/InstExceptionEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/State/InstExceptionEventArgs.cs')
-rw-r--r--ARMeilleure/State/InstExceptionEventArgs.cs16
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