blob: 7ee34a74a52fc9aed71e757a7c6934a768ade7f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
}
|