aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Translation/AILOpCode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Translation/AILOpCode.cs')
-rw-r--r--ChocolArm64/Translation/AILOpCode.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/ChocolArm64/Translation/AILOpCode.cs b/ChocolArm64/Translation/AILOpCode.cs
deleted file mode 100644
index a4bc93a0..00000000
--- a/ChocolArm64/Translation/AILOpCode.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Reflection.Emit;
-
-namespace ChocolArm64.Translation
-{
- struct AILOpCode : IAILEmit
- {
- private OpCode ILOp;
-
- public AILOpCode(OpCode ILOp)
- {
- this.ILOp = ILOp;
- }
-
- public void Emit(AILEmitter Context)
- {
- Context.Generator.Emit(ILOp);
- }
- }
-} \ No newline at end of file