New version of the assembler, that does better branch generation.
[sixpic.git] / tests / math / multi-byte.c
bloba618e6247a827113b8d17683352a938d581fdca5
1 // to test values larger than 8 bits, to see how they are handled
3 int z = 250;
4 int w = 120;
5 z = z + w;
6 w = z;
7 w = w + 300;
8 z = z + 3;