6 lines
74 B
C
6 lines
74 B
C
void halt() {
|
|
asm volatile("cli;\
|
|
hltlabel: hlt;\
|
|
jmp hltlabel");
|
|
}
|