2018-11-28 22:18:09 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
|
|
|
{
|
|
|
|
class KMemoryArrange
|
|
|
|
{
|
2018-12-05 00:52:39 +00: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 22:18:09 +00:00
|
|
|
|
|
|
|
public KMemoryArrange(
|
2018-12-05 00:52:39 +00:00
|
|
|
KMemoryArrangeRegion Service,
|
|
|
|
KMemoryArrangeRegion NvServices,
|
|
|
|
KMemoryArrangeRegion Applet,
|
|
|
|
KMemoryArrangeRegion Application)
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
this.Service = Service;
|
|
|
|
this.NvServices = NvServices;
|
|
|
|
this.Applet = Applet;
|
|
|
|
this.Application = Application;
|
2018-11-28 22:18:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|