Files
cleonos/cleonos/c/apps/spin_main.c
2026-04-18 12:28:27 +00:00

16 lines
390 B
C

#include <stdio.h>
int cleonos_app_main(void) {
static const char banner[] = "spin: busy loop started (test Alt+Ctrl+C force stop)\n";
volatile unsigned long long noise = 0xC1E0C1E0ULL;
(void)fputs(banner, 1);
for (;;) {
noise ^= (noise << 7);
noise ^= (noise >> 9);
noise ^= 0x9E3779B97F4A7C15ULL;
noise += 0xA5A5A5A5A5A5A5A5ULL;
}
}