Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git] / tests / misc / predefined-values.c
blob99e166fb8b4702e69e787a4f022cf62113567691
1 // test to see how/if predefined values work
3 X = 3;
4 int x; x = 17;
5 int y; y = 23;
6 int z; z = x + y;
7 int w; w = y - x + X;
8 // ok, it seems register allocation allocates around predefined values, good