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
/
arrays
/
dereference.c
blob
2fb6ab65d28654e8fefaf239b335fb65ea07d0af
1
// test for simple dereference, without FSR variables
2
3
byte a
=
5
;
4
*
a
=
3
;
5
*(
a
+
1
) =
4
;
6
a
=
a
+
2
;
7
*
a
=
5
;
8
a
;