aboutsummaryrefslogtreecommitdiff
path: root/apps/idle/idle.c
diff options
context:
space:
mode:
authorMarvin Borner2021-04-05 19:37:28 +0200
committerMarvin Borner2021-04-05 19:37:28 +0200
commitccc1dd7b4ba8ad5efe51aac32b26f0859d93fbe5 (patch)
treedf0e8330b14cea9ed0dd6546f69be24996f52a80 /apps/idle/idle.c
parent1f957aafa4423c1579627a279d861d03d76f3dbb (diff)
Restructured make layout and cleaned some apps
Diffstat (limited to 'apps/idle/idle.c')
-rw-r--r--apps/idle/idle.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/idle/idle.c b/apps/idle/idle.c
new file mode 100644
index 0000000..43186ff
--- /dev/null
+++ b/apps/idle/idle.c
@@ -0,0 +1,16 @@
+// MIT License, Copyright (c) 2021 Marvin Borner
+
+#include <def.h>
+
+int main(int argc, char **argv)
+{
+ UNUSED(argc);
+ UNUSED(argv);
+
+ // Just chillin'
+ while (1)
+ ;
+ /* __asm__ volatile("hlt"); */
+
+ return 0;
+}