From 645524fdf5173fc62f21a7305c25fd9ac999b00e Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jackpot51@gmail.com>
Date: Fri, 19 Aug 2016 14:53:16 -0600
Subject: [PATCH] Setup independent page tables, map heap to a single location

---
 lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib.rs b/lib.rs
index 9ce35ded..aeb6d083 100644
--- a/lib.rs
+++ b/lib.rs
@@ -120,7 +120,7 @@ pub extern fn kmain() {
 
 #[no_mangle]
 pub extern fn kmain_ap(id: usize) {
-    print!("{}", format!("ASP {}\n", id));
+    print!("{}", format!("AP {}\n", id));
 
     loop {
         unsafe { interrupt::enable_and_halt() }
-- 
GitLab