mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 04:43:54 -06:00

This is not really i386 only, we can have the same test for all architectures supporting system tests. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
14 lines
229 B
C
14 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;
|
|
}
|