diff options
Diffstat (limited to '')
| -rw-r--r-- | src/core/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | src/core/hle/kernel/initial_process.h | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index ce5886f22..5db6a1b3a 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -165,6 +165,7 @@ add_library(core STATIC | |||
| 165 | hle/kernel/hle_ipc.h | 165 | hle/kernel/hle_ipc.h |
| 166 | hle/kernel/init/init_slab_setup.cpp | 166 | hle/kernel/init/init_slab_setup.cpp |
| 167 | hle/kernel/init/init_slab_setup.h | 167 | hle/kernel/init/init_slab_setup.h |
| 168 | hle/kernel/initial_process.h | ||
| 168 | hle/kernel/k_address_arbiter.cpp | 169 | hle/kernel/k_address_arbiter.cpp |
| 169 | hle/kernel/k_address_arbiter.h | 170 | hle/kernel/k_address_arbiter.h |
| 170 | hle/kernel/k_address_space_info.cpp | 171 | hle/kernel/k_address_space_info.cpp |
diff --git a/src/core/hle/kernel/initial_process.h b/src/core/hle/kernel/initial_process.h new file mode 100644 index 000000000..25b27909c --- /dev/null +++ b/src/core/hle/kernel/initial_process.h | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | // Copyright 2022 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "common/common_types.h" | ||
| 8 | #include "common/literals.h" | ||
| 9 | #include "core/hle/kernel/board/nintendo/nx/k_memory_layout.h" | ||
| 10 | #include "core/hle/kernel/board/nintendo/nx/k_system_control.h" | ||
| 11 | |||
| 12 | namespace Kernel { | ||
| 13 | |||
| 14 | using namespace Common::Literals; | ||
| 15 | |||
| 16 | constexpr std::size_t InitialProcessBinarySizeMax = 12_MiB; | ||
| 17 | |||
| 18 | static inline PAddr GetInitialProcessBinaryPhysicalAddress() { | ||
| 19 | return Kernel::Board::Nintendo::Nx::KSystemControl::Init::GetKernelPhysicalBaseAddress( | ||
| 20 | MainMemoryAddress); | ||
| 21 | } | ||
| 22 | |||
| 23 | } // namespace Kernel | ||