1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-02 23:22:08 +00:00
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 20:01:59 +00:00
KMemoryArrangeRegion service,
KMemoryArrangeRegion nvServices,
KMemoryArrangeRegion applet,
KMemoryArrangeRegion application)
{
2018-12-01 20:01:59 +00:00
this.Service = service;
this.NvServices = nvServices;
this.Applet = applet;
this.Application = application;
}
}
}