Ryujinx/Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs
gdkchan a9ee9052e6 Refactor SVC handler (#540)
* Refactor SVC handler

* Get rid of KernelErr

* Split kernel code files into multiple folders
2024-02-22 19:14:07 -05:00

10 lines
No EOL
176 B
C#

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