Added 32-16 multiplication, needed for PICOBIT.
[sixpic.git] / tests / math / op-and-assign.c
blob3b615a6a088db2d3b06d061d9b403e2b9034908e
1 // to test += and co
2 byte x = 3;
3 x += 4;
4 x *= 2; // it's safe to guess that the others work too
5 x;