aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 120e7e09a6e96df031592e1aa5c0f70c6ded1b6d (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("Architecture specific main returned!");
}