aboutsummaryrefslogtreecommitdiff
path: root/source/kernel/src/entry.cpp
blob: 0daf227bb05c8ef8565a9013c930299cb52485b1 (plain)
1
2
3
4
5
6
7
8
9
namespace teachos
{
  extern "C" auto kernel_main() -> void
  {
    while(true) {
      asm volatile ("nop"); 
    }
  }
}