diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-03-17 12:55:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-17 12:55:19 +0100 |
commit | 7870423671cba17c8aad9bb93a67c84bda441366 (patch) | |
tree | 6271060483ee90c7088c071be66c572d186d8ed4 /Ryujinx.HLE/HOS/Kernel/KernelConstants.cs | |
parent | b72916fbc15d9f112f5d2944034b38f1fd43e7b5 (diff) |
Update syscall capabilites to include SVCs from FW 15.0.0 (#4530)1.1.667
* Add CapabilityType enum
* Add SupervisorCallCount
* kernel: Add CapabilityExtensions & Change type of capabilities to uint
* Remove private setter from Mask arrays
* Pass ReadOnlySpan directly & Remove redundant type casts
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KernelConstants.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Kernel/KernelConstants.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs b/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs index 3817b0aa..28db750c 100644 --- a/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs +++ b/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs @@ -7,6 +7,8 @@ namespace Ryujinx.HLE.HOS.Kernel public const int InitialKipId = 1; public const int InitialProcessId = 0x51; + public const int SupervisorCallCount = 0xC0; + public const int MemoryBlockAllocatorSize = 0x2710; public const ulong UserSlabHeapBase = DramMemoryMap.SlabHeapBase; @@ -15,4 +17,4 @@ namespace Ryujinx.HLE.HOS.Kernel public const ulong CounterFrequency = 19200000; } -} +}
\ No newline at end of file |