aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/CMakeLists.txt
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-11-01 13:22:02 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-11-01 13:22:02 +0000
commit31e1ac359eb4b84bdd81f768b2de327193976a55 (patch)
tree5cd9653afa4cd79b3c8caf89ff7651010380006a /arch/x86_64/CMakeLists.txt
parentb38ce5e24222ec97b45e1f87da4a392859947064 (diff)
downloadteachos-31e1ac359eb4b84bdd81f768b2de327193976a55.tar.xz
teachos-31e1ac359eb4b84bdd81f768b2de327193976a55.zip
Remove static page mapper and replace with unique active and inactive page table classes.
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
-rw-r--r--arch/x86_64/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt
index 8d64985..a97abaa 100644
--- a/arch/x86_64/CMakeLists.txt
+++ b/arch/x86_64/CMakeLists.txt
@@ -50,7 +50,8 @@ target_sources("_memory" PRIVATE
"src/memory/paging/page_table.cpp"
"src/memory/paging/temporary_page.cpp"
"src/memory/paging/virtual_page.cpp"
- "src/memory/paging/page_mapper.cpp"
+ "src/memory/paging/active_page_table.cpp"
+ "src/memory/paging/inactive_page_table.cpp"
)
#[============================================================================[