diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-12-19 11:46:46 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-12-19 11:46:46 +0100 |
| commit | de96b0588ab680e1002c12df7ea7900d7eb71cf8 (patch) | |
| tree | 41728f4f5c77a4d96dc3d89096483dfee75b3482 /kernel/src/main.cpp | |
| parent | 266dde7d535d997a45f6eef41e44ebcaa516b75a (diff) | |
| download | teachos-de96b0588ab680e1002c12df7ea7900d7eb71cf8.tar.xz teachos-de96b0588ab680e1002c12df7ea7900d7eb71cf8.zip | |
kstd: move println to kstd
Diffstat (limited to 'kernel/src/main.cpp')
| -rw-r--r-- | kernel/src/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/src/main.cpp b/kernel/src/main.cpp index 3394275..f1e5dd0 100644 --- a/kernel/src/main.cpp +++ b/kernel/src/main.cpp @@ -2,13 +2,15 @@ #include "kapi/memory.hpp" #include "kapi/system.hpp" +#include <kstd/print> + auto main() -> int { teachos::cio::init(); - teachos::cio::println("[OS] IO subsystem initialized."); + kstd::println("[OS] IO subsystem initialized."); teachos::memory::init(); - teachos::cio::println("[OS] Memory subsystem initialized."); + kstd::println("[OS] Memory subsystem initialized."); teachos::system::panic("Returning from kernel main!"); } |
