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