aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/multiarch/system/hello.c
blob: 821dc0ef09f489d088b40258af28e2c1eab3df6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * 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;
}