Files
mop3/spin/spin.c
kamkow1 c8fb575bdd
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s
Change formatting rules
2026-04-24 01:54:48 +02:00

12 lines
190 B
C

#include <system.h>
void app_main(void) {
for (;;) {
sched();
#if defined(__x86_64__)
for (int i = 0; i < 1000000; i++)
__asm__ volatile("pause" ::: "memory");
#endif
}
}