aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ldr/LoaderErr.cs
blob: ba77a5cc133277a1942bd7511f16927d6ac80298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.HLE.HOS.Services.Ldr
{
    static class LoaderErr
    {
        public const int InvalidMemoryState = 51;
        public const int InvalidNro         = 52;
        public const int InvalidNrr         = 53;
        public const int MaxNro             = 55;
        public const int MaxNrr             = 56;
        public const int NroAlreadyLoaded   = 57;
        public const int NroHashNotPresent  = 54;
        public const int UnalignedAddress   = 81;
        public const int BadSize            = 82;
        public const int BadNroAddress      = 84;
        public const int BadNrrAddress      = 85;
        public const int BadInitialization  = 87;
    }
}