blob: f1e5dd0cf639bf886f3eb7b0945852a0c8ce02a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "kapi/cio.hpp"
#include "kapi/memory.hpp"
#include "kapi/system.hpp"
#include <kstd/print>
auto main() -> int
{
teachos::cio::init();
kstd::println("[OS] IO subsystem initialized.");
teachos::memory::init();
kstd::println("[OS] Memory subsystem initialized.");
teachos::system::panic("Returning from kernel main!");
}
|