mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-06 06:53:39 +00:00
12 lines
132 B
C
12 lines
132 B
C
#include "uvm32_target.h"
|
|
|
|
int foo(int a) {
|
|
yield(0);
|
|
printdec(a);
|
|
return foo(a+1);
|
|
}
|
|
|
|
void main(void) {
|
|
foo(1);
|
|
}
|
|
|