diff options
Diffstat (limited to 'Ryujinx.Tests.Unicorn/Native/UnicornMemoryRegion.cs')
-rw-r--r-- | Ryujinx.Tests.Unicorn/Native/UnicornMemoryRegion.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Ryujinx.Tests.Unicorn/Native/UnicornMemoryRegion.cs b/Ryujinx.Tests.Unicorn/Native/UnicornMemoryRegion.cs deleted file mode 100644 index 7ee34a74..00000000 --- a/Ryujinx.Tests.Unicorn/Native/UnicornMemoryRegion.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Runtime.InteropServices; - -namespace Ryujinx.Tests.Unicorn.Native -{ - [StructLayout(LayoutKind.Sequential)] - public struct UnicornMemoryRegion - { - public UInt64 begin; // begin address of the region (inclusive) - public UInt64 end; // end address of the region (inclusive) - public UInt32 perms; // memory permissions of the region - } -} |