From 4919b802b94db5ab1775c290d6f91761edaae8c8 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 23 Mar 2016 01:02:15 -0400 Subject: [PATCH] Remove kearly() -- unnecessary --- src/Main.cc | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/Main.cc b/src/Main.cc index 52b465d..8d59616 100644 --- a/src/Main.cc +++ b/src/Main.cc @@ -22,19 +22,6 @@ #error "This file should be compiled with an ix86-elf compiler!" #endif -/** Called very early, before global initialization. */ -extern "C" -void -kearly() -{ - using kernel::Console; - - // Create a console object for early use because global initialization hasn't happened yet. - Console console; - console.clear(kernel::Console::Color::Blue); - console.printString("Loading system ...\n"); -} - /** The beginning of the world... */ extern "C"