From 14f74013a42ceb54d9728fff28833a061242f9ca Mon Sep 17 00:00:00 2001 From: Marco Melletti Date: Mon, 29 Dec 2014 15:35:14 +0100 Subject: [PATCH] +restored hello world --- test/helloworld.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/helloworld.c diff --git a/test/helloworld.c b/test/helloworld.c new file mode 100644 index 0000000..72712e7 --- /dev/null +++ b/test/helloworld.c @@ -0,0 +1,15 @@ +//#include "../facilities/libuarm.h" +#include "/usr/include/uarm/libuarm.h" + +char *error="If this got printed something fishy has happened..\n\0"; + +int main(){ + + tprint("Hello World!\n\0"); + + HALT(); + + tprint(error); + + return 0; +}