UnicornMemoryRegion.cs 395 B

12345678910111213
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Ryujinx.Tests.Unicorn.Native
  4. {
  5. [StructLayout(LayoutKind.Sequential)]
  6. public struct UnicornMemoryRegion
  7. {
  8. public UInt64 begin; // begin address of the region (inclusive)
  9. public UInt64 end; // end address of the region (inclusive)
  10. public UInt32 perms; // memory permissions of the region
  11. }
  12. }