Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / conditions / and.c
blob9aa013af79148a5ade19a412134456ab92a8f040
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);