2026-04-05 01:31:47 +02:00

10 lines
102 B
C

#include <ch32fun.h>
int main(void) {
unsigned int x = 0;
while(true) {
x = x+1;
}
return 0;
}