Ryujinx/Ryujinx.HLE/HOS/Kernel/KMemoryArrange.cs

22 lines
745 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel
{
class KMemoryArrange
{
public KMemoryArrangeRegion Service { get; private set; }
public KMemoryArrangeRegion NvServices { get; private set; }
public KMemoryArrangeRegion Applet { get; private set; }
public KMemoryArrangeRegion Application { get; private set; }
public KMemoryArrange(
2018-12-01 21:01:59 +01:00
KMemoryArrangeRegion service,
KMemoryArrangeRegion nvServices,
KMemoryArrangeRegion applet,
KMemoryArrangeRegion application)
{
2018-12-01 21:01:59 +01:00
this.Service = service;
this.NvServices = nvServices;
this.Applet = applet;
this.Application = application;
}
}
}