1 2 3 4 5 6 7 8 9 10
namespace teachos { extern "C" auto kernel_main() -> void { while (true) { asm volatile("nop"); } } } // namespace teachos