Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / conditions / non-zero.c
blob213b87f591c4a5110ba0a2838c6aabaf6baa4be8
1 // simpler sigma, to test the new condition system
2 int sigma (int n){
3 int res = n;
4 while (n--){
5 res = res + n;
7 return res;
10 sigma(5);