2018-12-18 06:33:36 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
|
|
|
class KMemoryArrange
|
|
|
|
{
|
2018-12-05 01:52:39 +01:00
|
|
|
public KMemoryArrangeRegion Service { get; private set; }
|
|
|
|
public KMemoryArrangeRegion NvServices { get; private set; }
|
|
|
|
public KMemoryArrangeRegion Applet { get; private set; }
|
|
|
|
public KMemoryArrangeRegion Application { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
public KMemoryArrange(
|
2018-12-06 12:16:24 +01:00
|
|
|
KMemoryArrangeRegion service,
|
|
|
|
KMemoryArrangeRegion nvServices,
|
|
|
|
KMemoryArrangeRegion applet,
|
|
|
|
KMemoryArrangeRegion application)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Service = service;
|
|
|
|
NvServices = nvServices;
|
|
|
|
Applet = applet;
|
|
|
|
Application = application;
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|