From e01d08162c484df8b089ab8ac52ec3475226eda3 Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 4 Jun 2017 15:52:19 -0500 Subject: [PATCH] memory::paging: Add note that we use recursive P4 paging --- src/arch/x86_64/memory/paging/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86_64/memory/paging/mod.rs b/src/arch/x86_64/memory/paging/mod.rs index cd4078e..5846a74 100644 --- a/src/arch/x86_64/memory/paging/mod.rs +++ b/src/arch/x86_64/memory/paging/mod.rs @@ -1,4 +1,4 @@ -//! Paging subsystem. +//! Paging subsystem. *Note: uses recursive mapping.* //! //! Extremely ripped off from Phil Oppermann's tutorials, because I don't feel like writing //! a paging system off the top of my head today.