hazel/kernel/kernel.c

5 lines
63 B
C
Raw Normal View History

2024-06-25 15:28:44 -04:00
void kernel() {
asm volatile ("cli" ::);
for (;;) {}
}