aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r--src/userspace/main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c
new file mode 100644
index 0000000..22bb42a
--- /dev/null
+++ b/src/userspace/main.c
@@ -0,0 +1,10 @@
+#include <stddef.h>
+
+extern void syscall();
+
+void user_main()
+{
+ syscall();
+
+ while (1) {};
+} \ No newline at end of file