blob: 2d4c3fef9f29db43c6e5da9ed5d511b50cc93fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "kapi/system.hpp"
namespace teachos::system
{
auto halt() -> void
{
asm volatile("1: hlt\njmp 1b");
__builtin_unreachable();
}
} // namespace teachos::system
|