diff options
Diffstat (limited to 'ChocolArm64/Memory/MemoryProtection.cs')
-rw-r--r-- | ChocolArm64/Memory/MemoryProtection.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ChocolArm64/Memory/MemoryProtection.cs b/ChocolArm64/Memory/MemoryProtection.cs new file mode 100644 index 00000000..d0874bfc --- /dev/null +++ b/ChocolArm64/Memory/MemoryProtection.cs @@ -0,0 +1,16 @@ +using System; + +namespace ChocolArm64.Memory +{ + [Flags] + public enum MemoryProtection + { + None = 0, + Read = 1 << 0, + Write = 1 << 1, + Execute = 1 << 2, + + ReadAndWrite = Read | Write, + ReadAndExecute = Read | Execute + } +}
\ No newline at end of file |