repo.or.cz
/
yari.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
TARGET DE2-70: Memory tester was broken -> Fixed and sped up
[yari.git]
/
yarisim
/
test_globals.c
blob
875281ec0022918a37b4292c3cc9a6c717a859be
1
#include <assert.h>
2
volatile
unsigned
a
;
3
int
main
(
int
argc
,
char
*
argv
[]) {
4
unsigned
b
;
5
a
=
0x27
;
b
=
0x6
;
assert
((
a
+
b
) ==
0x0000002d
);
6
return
0
;
7
}