aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Memory/IJitMemoryBlock.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Memory/IJitMemoryBlock.cs')
-rw-r--r--ARMeilleure/Memory/IJitMemoryBlock.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/ARMeilleure/Memory/IJitMemoryBlock.cs b/ARMeilleure/Memory/IJitMemoryBlock.cs
deleted file mode 100644
index 670f2862..00000000
--- a/ARMeilleure/Memory/IJitMemoryBlock.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace ARMeilleure.Memory
-{
- public interface IJitMemoryBlock : IDisposable
- {
- IntPtr Pointer { get; }
-
- bool Commit(ulong offset, ulong size);
-
- void MapAsRx(ulong offset, ulong size);
- void MapAsRwx(ulong offset, ulong size);
- }
-}