diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-07-14 21:08:02 +0000 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-07-14 21:08:02 +0000 |
| commit | 3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b (patch) | |
| tree | 8fe6e1227a38f507f3424d858c83351557b52860 /kern/src | |
| parent | 71bb11508020a55c5636f05136bd03059ddc33ed (diff) | |
| download | teachos-3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b.tar.xz teachos-3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b.zip | |
x86_64: move basic text output implementation
Diffstat (limited to 'kern/src')
| -rw-r--r-- | kern/src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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!"); |
