aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/MemoryRegion.cs
blob: ea4f33c9ce168e07142a5915117b2dfc5e25f7db (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.HLE.HOS.Kernel
{
    enum MemoryRegion
    {
        Application = 0,
        Applet      = 1,
        Service     = 2,
        NvServices  = 3
    }
}