From 2a2f377b9f225e981f398f21efced12ad5d1f791 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Wed, 28 Feb 2018 20:36:19 +0100 Subject: [PATCH] first commit for kfs3 --- kernel-rs/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel-rs/src/lib.rs b/kernel-rs/src/lib.rs index 0c0170cd..69fbe349 100644 --- a/kernel-rs/src/lib.rs +++ b/kernel-rs/src/lib.rs @@ -21,6 +21,8 @@ pub mod console; pub mod cpuio; /// ACPI self-content module pub mod acpi; +/// simple area frame allocator implementation +pub mod memory; use context::CONTEXT;