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
New version of the assembler, that does better branch generation.
[sixpic.git]
/
tests
/
functions
/
call-multi-byte.c
blob
366a43b00bce49b00d48ec39915ff749a4a835c9
1
// simple function call
2
int16
f
(
byte x
){
3
return
x
+
1024
;
4
}
5
byte y
;
y
=
3
;
6
int16 z
;
z
=
f
(
y
);
7
int16 w
;
w
=
z
+
15
;