mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 06:08:35 +00:00
22 lines
745 B
C#
22 lines
745 B
C#
|
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(
|
||
|
KMemoryArrangeRegion Service,
|
||
|
KMemoryArrangeRegion NvServices,
|
||
|
KMemoryArrangeRegion Applet,
|
||
|
KMemoryArrangeRegion Application)
|
||
|
{
|
||
|
this.Service = Service;
|
||
|
this.NvServices = NvServices;
|
||
|
this.Applet = Applet;
|
||
|
this.Application = Application;
|
||
|
}
|
||
|
}
|
||
|
}
|