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