2018-12-18 00:33:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
2018-11-28 17:18:09 -05:00
|
|
|
{
|
|
|
|
class KMemoryArrange
|
|
|
|
{
|
2018-12-04 19:52:39 -05: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 17:18:09 -05:00
|
|
|
|
|
|
|
public KMemoryArrange(
|
2018-12-06 06:16:24 -05:00
|
|
|
KMemoryArrangeRegion service,
|
|
|
|
KMemoryArrangeRegion nvServices,
|
|
|
|
KMemoryArrangeRegion applet,
|
|
|
|
KMemoryArrangeRegion application)
|
2018-11-28 17:18:09 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
Service = service;
|
|
|
|
NvServices = nvServices;
|
|
|
|
Applet = applet;
|
|
|
|
Application = application;
|
2018-11-28 17:18:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|