Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / math / multi-byte-literals-1st-arg.c
blobac7cf772b99500a97cd9b31ee9ffcd072a80f6c6
1 // multi-byte literals as 1st args
2 byte w; w = 3;
3 int16 z; z = 1029 - w;
4 /* byte z; z = 12 - w; */
5 /* byte x; x = 7; */
6 /* byte z; z = x - w; */
7 /* byte a; a = w + 5; */
8 /* byte b; b = x + 6; */
9 /* byte c; c = a + b; */