From 3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 14 Jul 2025 21:08:02 +0000 Subject: x86_64: move basic text output implementation --- kern/src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'kern/src') diff --git a/kern/src/main.cpp b/kern/src/main.cpp index 5e1b6ea..b99fb37 100644 --- a/kern/src/main.cpp +++ b/kern/src/main.cpp @@ -1,10 +1,13 @@ #include "arch/io.hpp" #include "arch/memory.hpp" #include "kern/error.hpp" +#include "kern/print.hpp" auto main() -> int { teachos::arch::io::init(); + teachos::println("[OS] IO subsystem initialized."); + teachos::arch::memory::init(); teachos::panic("Architecture specific main returned!"); -- cgit v1.2.3