blob: fc7d2f40ce642d4ea493d901c37bb519fd85f9de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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::system::panic("Returning from kernel main!");
}
|