aboutsummaryrefslogtreecommitdiff
path: root/source/arch/x86_64/src/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'source/arch/x86_64/src/kernel')
-rw-r--r--source/arch/x86_64/src/kernel/main.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/arch/x86_64/src/kernel/main.cpp b/source/arch/x86_64/src/kernel/main.cpp
deleted file mode 100644
index 0e90264..0000000
--- a/source/arch/x86_64/src/kernel/main.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "arch/kernel/main.hpp"
-
-#include "arch/video/vga/text.hpp"
-
-namespace teachos::arch::kernel
-{
- auto main() -> void
- {
- using namespace video::vga;
-
- text::clear();
- text::cursor(false);
- text::write("TeachOS is starting up...", text::common_attributes::green_on_black);
- }
-} // namespace teachos::arch::kernel