This website requires JavaScript.
Explore
Help
Sign In
OpenE2K
/
qemu-e2k
Watch
13
Star
4
Fork
0
You've already forked qemu-e2k
Code
Issues
4
Pull Requests
Projects
2
Releases
Activity
f57587c7d4
qemu-e2k
/
tests
/
tcg
/
alpha
/
hello-alpha.c
8 lines
80 B
C
Raw
Normal View
History
Unescape
Escape
tests/tcg/alpha: add Alpha specific tests These tests did use their own crt.o stub however that is a little stone age so we drop crt.S and just statically link to the cross compilers libraries. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
2018-04-23 16:48:06 +02:00
#
include
<unistd.h>
alpha: add tests This patch creates tests/alpha directory and adds an "hello world" program as well as two tests. Signed-off-by: Tristan Gingold <gingold@adacore.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5216 c046a42c-6fe2-441c-8c8c-71466251a162
2008-09-14 19:18:29 +02:00
int
main
(
void
)
{
write
(
1
,
"
hello
\n
"
,
6
)
;
return
0
;
}
Reference in New Issue
Copy Permalink