#include "misc/hang.h"
[[noreturn]] void hang()
{
asm volatile("cli");
end:
halt();
goto end;
}
void halt()
asm volatile("hlt");