aboutsummaryrefslogtreecommitdiffstats
path: root/initrd/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'initrd/init.c')
-rw-r--r--initrd/init.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/initrd/init.c b/initrd/init.c
new file mode 100644
index 0000000..5ff4ae5
--- /dev/null
+++ b/initrd/init.c
@@ -0,0 +1,14 @@
+/**
+ * @file test.c
+ * Basic userland code to be loaded by stmos for program load testing.
+ */
+
+#include <stdio.h>
+
+int main(void)
+{
+ printf("Hello, world!\n");
+ while (1);
+ return 0;
+}
+