Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / math / shift32.c
blobdda7e0af7af06c4aca99752df63cb14e5250b8a6
1 int32 x = #x123456;
2 x = x << 12;
3 x = x + #x11111111;
4 x = x >> 9;
5 x;