Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / conditions / or.c
blob715ec8a08a72d73d1ca48575feb18bac7acc1128
1 byte f (byte x){
2 while(0){
3 return 2;
5 if (x == 2 || x != 0){
6 return 5;
8 return 4;
10 f(3);