2018-11-28 23:18:09 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
|
|
|
{
|
|
|
|
struct KMemoryArrangeRegion
|
|
|
|
{
|
2018-12-05 01:52:39 +01:00
|
|
|
public ulong Address { get; private set; }
|
|
|
|
public ulong Size { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
public ulong EndAddr => Address + Size;
|
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
public KMemoryArrangeRegion(ulong Address, ulong Size)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-05 01:52:39 +01:00
|
|
|
this.Address = Address;
|
|
|
|
this.Size = Size;
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|