Files
x86-bare-metal-examples/infinite_loop.S
Ciro Santilli 61f0ad8dda Remove END
2015-10-05 16:58:44 +02:00

11 lines
169 B
ArmAsm

/*
This is a common alternative to `hlt`.
It likely wastes more energy? But is less prone to being interrupted than `hlt`.
*/
#include "common.h"
BEGIN
loop:
jmp loop