aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/CMakeLists.txt
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-19 14:40:25 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-19 14:40:25 +0000
commit675f38d6733fb19b4ffc7e9fbddb93acdd1d1e31 (patch)
tree0ec4682c3be47e2ee8250b7608d0464d18ca138d /arch/x86_64/CMakeLists.txt
parenta2fdcea0d7615f8933401e45e0c64a2f618bb730 (diff)
downloadteachos-675f38d6733fb19b4ffc7e9fbddb93acdd1d1e31.tar.xz
teachos-675f38d6733fb19b4ffc7e9fbddb93acdd1d1e31.zip
Seperate allocation and paging code into multiple files as well
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
-rw-r--r--arch/x86_64/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt
index 7ddf303..016215b 100644
--- a/arch/x86_64/CMakeLists.txt
+++ b/arch/x86_64/CMakeLists.txt
@@ -44,8 +44,10 @@ target_sources("_memory" PRIVATE
"src/memory/multiboot/elf_symbols_section.cpp"
"src/memory/multiboot/memory_map.cpp"
"src/memory/multiboot/reader.cpp"
- "src/memory/frame_allocator.cpp"
- "src/memory/paging.cpp"
+ "src/memory/allocator/area_frame_allocator.cpp"
+ "src/memory/allocator/physical_frame.cpp"
+ "src/memory/paging/page_entry.cpp"
+ "src/memory/paging/page_table.cpp"
)
#[============================================================================[