os/cpu/x86_64/halt.c
2019-04-27 09:51:32 -05:00

6 lines
74 B
C

void halt() {
asm volatile("cli;\
hltlabel: hlt;\
jmp hltlabel");
}