mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 15:17:43 +02:00

* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
10 lines
No EOL
176 B
C#
10 lines
No EOL
176 B
C#
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|
{
|
|
enum MemoryRegion
|
|
{
|
|
Application = 0,
|
|
Applet = 1,
|
|
Service = 2,
|
|
NvServices = 3
|
|
}
|
|
} |