aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Events/InstExceptionEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Events/InstExceptionEventArgs.cs')
-rw-r--r--ChocolArm64/Events/InstExceptionEventArgs.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChocolArm64/Events/InstExceptionEventArgs.cs b/ChocolArm64/Events/InstExceptionEventArgs.cs
new file mode 100644
index 00000000..e3cc0ba0
--- /dev/null
+++ b/ChocolArm64/Events/InstExceptionEventArgs.cs
@@ -0,0 +1,16 @@
+using System;
+
+namespace ChocolArm64.Events
+{
+ public class InstExceptionEventArgs : EventArgs
+ {
+ public long Position { get; private set; }
+ public int Id { get; private set; }
+
+ public InstExceptionEventArgs(long position, int id)
+ {
+ Position = position;
+ Id = id;
+ }
+ }
+} \ No newline at end of file