Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / math / bitwise.c
blob19286b8665b750979f2e25b741dca495dd647dcd
1 // bitwise operations
3 int16 x = #x5335 & #x3553;
4 byte y = 4 | 2;
5 byte z = 5 ^ 3;
6 z;