infinite_loop.S 169 B

1234567891011
  1. /*
  2. This is a common alternative to `hlt`.
  3. It likely wastes more energy? But is less prone to being interrupted than `hlt`.
  4. */
  5. #include "common.h"
  6. BEGIN
  7. loop:
  8. jmp loop