diff options
author | bunnei <bunneidev@gmail.com> | 2022-10-29 13:47:39 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2022-11-03 21:17:06 -0700 |
commit | d353c45f7dadc32fa650d526fcf4ba81aa26be44 (patch) | |
tree | fe8b64f872f1ca97deb697f0ace719aa657fd40c /src | |
parent | f76b4417e6b705137dffbed0ee0b0d47af00e24a (diff) |
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.h | 4 |
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 { class KSystemControl { public: + // This can be overridden as needed. + static constexpr size_t SecureAppletMemorySize = 4 * 1024 * 1024; // 4_MB + +public: class Init { public: // Initialization. |