aboutsummaryrefslogtreecommitdiff
path: root/source/kernel/arch/x86_64/src/entry.cpp
blob: 2d4e7fb711b0dc9442c79bf91cca9ac17a37d4f9 (plain)
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