aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/memory/mmu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/src/memory/mmu.cpp')
-rw-r--r--arch/x86_64/src/memory/mmu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/src/memory/mmu.cpp b/arch/x86_64/src/memory/mmu.cpp
index e573b4e..8ec8a2e 100644
--- a/arch/x86_64/src/memory/mmu.cpp
+++ b/arch/x86_64/src/memory/mmu.cpp
@@ -13,7 +13,7 @@ namespace teachos::memory::x86_64
auto tlb_flush_all() -> void
{
- auto current_value = cpu::read_control_register(cpu::control_register::cr3);
- cpu::write_control_register(cpu::control_register::cr3, current_value);
+ auto paging_root = cpu::cr3::read();
+ cpu::cr3::write(paging_root);
}
} // namespace teachos::memory::x86_64