process.cpp 127 B

1234567
  1. #include <types/types.h>
  2. // TODO: remove this
  3. void NORETURN freeze(void) {
  4. for (;;)
  5. asm volatile("cli\n\thlt");
  6. }