This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
qemu
Watch
1
Star
0
Fork
0
You've already forked qemu
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
9701596d82
qemu
/
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 17:48:06 +03: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 21:18:29 +04:00
int
main
(
void
)
{
write
(
1
,
"
hello
\n
"
,
6
)
;
return
0
;
}
Reference in New Issue
Copy Permalink