summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2022-10-29 13:47:39 -0700
committerGravatar bunnei2022-11-03 21:17:06 -0700
commitd353c45f7dadc32fa650d526fcf4ba81aa26be44 (patch)
treefe8b64f872f1ca97deb697f0ace719aa657fd40c /src
parentcore: hle: kernel: k_page_buffer: Add KPageBufferSlabHeap. (diff)
downloadyuzu-d353c45f7dadc32fa650d526fcf4ba81aa26be44.tar.gz
yuzu-d353c45f7dadc32fa650d526fcf4ba81aa26be44.tar.xz
yuzu-d353c45f7dadc32fa650d526fcf4ba81aa26be44.zip
core: hle: kernel: k_system_control: Add SecureAppletMemorySize.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/board/nintendo/nx/k_system_control.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/board/nintendo/nx/k_system_control.h b/src/core/hle/kernel/board/nintendo/nx/k_system_control.h
index fe375769e..4b717d091 100644
--- a/src/core/hle/kernel/board/nintendo/nx/k_system_control.h
+++ b/src/core/hle/kernel/board/nintendo/nx/k_system_control.h
@@ -9,6 +9,10 @@ namespace Kernel::Board::Nintendo::Nx {
9 9
10class KSystemControl { 10class KSystemControl {
11public: 11public:
12 // This can be overridden as needed.
13 static constexpr size_t SecureAppletMemorySize = 4 * 1024 * 1024; // 4_MB
14
15public:
12 class Init { 16 class Init {
13 public: 17 public:
14 // Initialization. 18 // Initialization.