aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/system.cpp
blob: 60ebf0e7f19e103575341acc8abaa4e67a549655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "arch/system.hpp"

namespace teachos::arch::system
{

  auto halt() -> void
  {
    asm volatile("1: hlt\njmp 1b");
    __builtin_unreachable();
  }

}  // namespace teachos::arch::system