diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-12-01 07:46:20 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-12-01 07:46:20 +0000 |
| commit | e8bbb1ad850a362dfa25ba1ea7bdd838a379def8 (patch) | |
| tree | d62d371dbd928d97a8957c349eeea3f9577b7345 /arch/x86_64/include | |
| parent | 9af867de0050eef28772f7dee799666ae343950e (diff) | |
| download | teachos-e8bbb1ad850a362dfa25ba1ea7bdd838a379def8.tar.xz teachos-e8bbb1ad850a362dfa25ba1ea7bdd838a379def8.zip | |
Move heap virtual location and allocate multiple variables to test heap.
Diffstat (limited to 'arch/x86_64/include')
| -rw-r--r-- | arch/x86_64/include/arch/memory/heap/concept.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/include/arch/memory/heap/concept.hpp b/arch/x86_64/include/arch/memory/heap/concept.hpp index 8c8c887..52dba51 100644 --- a/arch/x86_64/include/arch/memory/heap/concept.hpp +++ b/arch/x86_64/include/arch/memory/heap/concept.hpp @@ -5,7 +5,7 @@ namespace teachos::arch::memory::heap { - std::size_t constexpr HEAP_START = 0x4000'0000; + std::size_t constexpr HEAP_START = 0x100000000; std::size_t constexpr HEAP_SIZE = 100 * 1024; template<typename T> |
