blob: 36c6d925db625c5e25507449e67bd2562f7be8b9 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "arch/kernel/main.hpp"
#include "arch/exception_handling/panic.hpp"
extern "C" auto kernel_main() -> void
{
teachos::arch::kernel::main();
teachos::arch::exception_handling::panic("Architecture specific main returned!");
}
|