uvm32/apps/helloworld/helloworld.c
2025-12-09 01:19:09 +00:00

8 lines
104 B
C

#include "uvm32_target.h"
void main(void) {
for (int i=0;i<10;i++) {
printdec(i);
}
}