summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
diff options
context:
space:
mode:
authorMai <mai.iam2048@gmail.com>2023-04-10 09:04:05 +0200
committerGitHub <noreply@github.com>2023-04-10 09:04:05 +0200
commit47b80da9064f91d89b11a09192e1fc2fd5f57e69 (patch)
tree1e8b3e570182bf71f9bcd18c0fb5e7af60a80bbd /src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
parentMerge pull request #10014 from goldenx86/linuxLTO (diff)
parentkernel: move more memory to application in 8GB arrangement (diff)
downloadyuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.tar
yuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.tar.gz
yuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.tar.bz2
yuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.tar.lz
yuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.tar.xz
yuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.tar.zst
yuzu-47b80da9064f91d89b11a09192e1fc2fd5f57e69.zip
Diffstat (limited to 'src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp')
-rw-r--r--src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp b/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
index 42d1fcc28..36d0d20d2 100644
--- a/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
+++ b/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
@@ -35,11 +35,11 @@ namespace {
using namespace Common::Literals;
u32 GetMemorySizeForInit() {
- return Settings::values.use_extended_memory_layout ? Smc::MemorySize_6GB : Smc::MemorySize_4GB;
+ return Settings::values.use_extended_memory_layout ? Smc::MemorySize_8GB : Smc::MemorySize_4GB;
}
Smc::MemoryArrangement GetMemoryArrangeForInit() {
- return Settings::values.use_extended_memory_layout ? Smc::MemoryArrangement_6GB
+ return Settings::values.use_extended_memory_layout ? Smc::MemoryArrangement_8GB
: Smc::MemoryArrangement_4GB;
}
} // namespace
@@ -91,7 +91,8 @@ std::size_t KSystemControl::Init::GetApplicationPoolSize() {
case Smc::MemoryArrangement_6GBForAppletDev:
return 3285_MiB;
case Smc::MemoryArrangement_8GB:
- return 4916_MiB;
+ // Real kernel sets this to 4916_MiB. We are not debugging applets.
+ return 6547_MiB;
}
}();
@@ -115,7 +116,8 @@ size_t KSystemControl::Init::GetAppletPoolSize() {
case Smc::MemoryArrangement_6GBForAppletDev:
return 2193_MiB;
case Smc::MemoryArrangement_8GB:
- return 2193_MiB;
+ //! Real kernel sets this to 2193_MiB. We are not debugging applets.
+ return 562_MiB;
}
}();