aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Events
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Events')
-rw-r--r--ChocolArm64/Events/CpuTraceEventArgs.cs14
-rw-r--r--ChocolArm64/Events/InstExceptionEventArgs.cs16
-rw-r--r--ChocolArm64/Events/InstUndefinedEventArgs.cs16
3 files changed, 0 insertions, 46 deletions
diff --git a/ChocolArm64/Events/CpuTraceEventArgs.cs b/ChocolArm64/Events/CpuTraceEventArgs.cs
deleted file mode 100644
index c12781ed..00000000
--- a/ChocolArm64/Events/CpuTraceEventArgs.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace ChocolArm64.Events
-{
- public class CpuTraceEventArgs : EventArgs
- {
- public long Position { get; private set; }
-
- public CpuTraceEventArgs(long position)
- {
- Position = position;
- }
- }
-} \ No newline at end of file
diff --git a/ChocolArm64/Events/InstExceptionEventArgs.cs b/ChocolArm64/Events/InstExceptionEventArgs.cs
deleted file mode 100644
index e3cc0ba0..00000000
--- a/ChocolArm64/Events/InstExceptionEventArgs.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-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
diff --git a/ChocolArm64/Events/InstUndefinedEventArgs.cs b/ChocolArm64/Events/InstUndefinedEventArgs.cs
deleted file mode 100644
index 3ad7ea8b..00000000
--- a/ChocolArm64/Events/InstUndefinedEventArgs.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-
-namespace ChocolArm64.Events
-{
- public class InstUndefinedEventArgs : EventArgs
- {
- public long Position { get; private set; }
- public int RawOpCode { get; private set; }
-
- public InstUndefinedEventArgs(long position, int rawOpCode)
- {
- Position = position;
- RawOpCode = rawOpCode;
- }
- }
-} \ No newline at end of file