summaryrefslogtreecommitdiff
path: root/src/kernel.rs
diff options
context:
space:
mode:
authorChristian Cunningham <c@localhost>2022-08-23 20:56:57 -0700
committerChristian Cunningham <c@localhost>2022-08-23 20:56:57 -0700
commite83717b454722b8c61844686377c2ac58f18454f (patch)
tree3f243026dd102ccc9117481e795e6d8e938fc39b /src/kernel.rs
parent526abb3e5b3175008cb60f78b645d5e2c0f5072a (diff)
Migrate the processor-independent code
Due to the similarity with my ARM-based OS ghOSt, I am migrating similar code out to a common crate Not all has been moved out yet
Diffstat (limited to 'src/kernel.rs')
-rw-r--r--src/kernel.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/kernel.rs b/src/kernel.rs
index c040a4b..57cc04f 100644
--- a/src/kernel.rs
+++ b/src/kernel.rs
@@ -57,8 +57,6 @@ pub extern "C" fn _start() -> ! {
#[cfg(not(test))]
{
- WRITER.write_string("Hello World!");
- WRITER.write_string("\n\nHi\n");
println!("{}", 5);
}