Ryujinx/Ryujinx.HLE/HOS/Kernel/MemoryRegion.cs
2018-12-01 14:38:15 -06:00

10 lines
No EOL
178 B
C#

namespace Ryujinx.HLE.HOS.Kernel
{
internal enum MemoryRegion
{
Application = 0,
Applet = 1,
Service = 2,
NvServices = 3
}
}