2018-11-28 22:18:09 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
|
|
|
{
|
|
|
|
class KMemoryArrange
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
public KMemoryArrangeRegion Service { get; }
|
|
|
|
public KMemoryArrangeRegion NvServices { get; }
|
|
|
|
public KMemoryArrangeRegion Applet { get; }
|
|
|
|
public KMemoryArrangeRegion Application { get; }
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
|
|
public KMemoryArrange(
|
2018-12-04 20:23:37 +00:00
|
|
|
KMemoryArrangeRegion service,
|
|
|
|
KMemoryArrangeRegion nvServices,
|
|
|
|
KMemoryArrangeRegion applet,
|
|
|
|
KMemoryArrangeRegion application)
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
Service = service;
|
|
|
|
NvServices = nvServices;
|
|
|
|
Applet = applet;
|
|
|
|
Application = application;
|
2018-11-28 22:18:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|