xref: /qemu/tests/tcg/multiarch/system/hello.c (revision fc7d2b451ea5d5fe1e787ed7e80c7082fe1cb83d)
1 /*
2  * Hello World, system test version
3  *
4  * We don't have the benefit of libc, just builtin C primitives and
5  * whatever is in minilib.
6  */
7 
8 #include <minilib.h>
9 
10 int main(void)
11 {
12     ml_printf("Hello World\n");
13     return 0;
14 }
15