Sign in
qemu
/
qemu
/
083367dbbf6e5ac086c32e64db6701f493928e47
/
.
/
tests
/
tcg
/
multiarch
/
system
/
hello.c
blob: 821dc0ef09f489d088b40258af28e2c1eab3df6f [
file
] [
log
] [
blame
]
/*
* Hello World, system test version
*
* We don't have the benefit of libc, just builtin C primitives and
* whatever is in minilib.
*/
#include
<minilib.h>
int
main
(
void
)
{
ml_printf
(
"Hello World\n"
);
return
0
;
}