mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
19 lines
295 B
C
19 lines
295 B
C
#define USE_MAIN
|
|
#include "uvm32_target.h"
|
|
|
|
void main(void) {
|
|
for (int i=0;i<10;i++) {
|
|
printd(i);
|
|
}
|
|
#if 0
|
|
uint32_t c;
|
|
while(c = getc()) {
|
|
if (c != 0xFFFFFFFF) {
|
|
print("Got: ");
|
|
printx(c);
|
|
println("");
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|