repo.or.cz
/
sixpic.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git]
/
tests
/
math
/
multi-byte-literals-1st-arg.c
blob
ac7cf772b99500a97cd9b31ee9ffcd072a80f6c6
1
// multi-byte literals as 1st args
2
byte w
;
w
=
3
;
3
int16 z
;
z
=
1029
-
w
;
4
/* byte z; z = 12 - w; */
5
/* byte x; x = 7; */
6
/* byte z; z = x - w; */
7
/* byte a; a = w + 5; */
8
/* byte b; b = x + 6; */
9
/* byte c; c = a + b; */