You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qemu/tests/tcg/multiarch/system/hello.c

15 lines
229 B
C

/*
* 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;
}