mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
16 lines
384 B
C#
16 lines
384 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
struct KMemoryArrangeRegion
|
|
{
|
|
public ulong Address { get; private set; }
|
|
public ulong Size { get; private set; }
|
|
|
|
public ulong EndAddr => Address + Size;
|
|
|
|
public KMemoryArrangeRegion(ulong Address, ulong Size)
|
|
{
|
|
this.Address = Address;
|
|
this.Size = Size;
|
|
}
|
|
}
|
|
} |