aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Memory/AMemoryMapInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Memory/AMemoryMapInfo.cs')
-rw-r--r--ChocolArm64/Memory/AMemoryMapInfo.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/ChocolArm64/Memory/AMemoryMapInfo.cs b/ChocolArm64/Memory/AMemoryMapInfo.cs
deleted file mode 100644
index 02dd3055..00000000
--- a/ChocolArm64/Memory/AMemoryMapInfo.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace ChocolArm64.Memory
-{
- public class AMemoryMapInfo
- {
- public long Position { get; private set; }
- public long Size { get; private set; }
- public int Type { get; private set; }
- public int Attr { get; private set; }
-
- public AMemoryPerm Perm { get; private set; }
-
- public AMemoryMapInfo(long Position, long Size, int Type, int Attr, AMemoryPerm Perm)
- {
- this.Position = Position;
- this.Size = Size;
- this.Type = Type;
- this.Attr = Attr;
- this.Perm = Perm;
- }
- }
-} \ No newline at end of file