diff options
Diffstat (limited to 'apps/idle/idle.c')
-rw-r--r-- | apps/idle/idle.c | 16 |
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; +} |