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
|