From 2335398b704e1fb2fa561f7dd115f89c69c58bb7 Mon Sep 17 00:00:00 2001 From: Tianhao Wang Date: Thu, 30 May 2024 09:37:57 +0200 Subject: mm: add basic paging infra from x86_64 crate the x86_64 crate is pretty solid and has a permissive license (Apache/MIT), but I want to make this myself in the future to "experience" the unsafe rust further....Also it has too many abstractions, which is justified as a library, but not ideal for a from sctrach toy OS as it hides the lower end. Signed-off-by: Tianhao Wang --- src/arch/x86_64/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/arch/x86_64/mod.rs') diff --git a/src/arch/x86_64/mod.rs b/src/arch/x86_64/mod.rs index 4da1970..888cafd 100644 --- a/src/arch/x86_64/mod.rs +++ b/src/arch/x86_64/mod.rs @@ -3,3 +3,4 @@ pub mod interrupt; pub mod io_port; pub mod mem; pub mod misc; +pub mod paging; -- cgit v1.2.3-70-g09d2