aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/idle.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/idle.c b/apps/idle.c
index 15ffc68..95731e2 100644
--- a/apps/idle.c
+++ b/apps/idle.c
@@ -6,7 +6,10 @@ int main(int argc, char **argv)
{
UNUSED(argc);
UNUSED(argv);
+
+ // Just chillin'
while (1)
- ;
+ __asm__ volatile("hlt");
+
return 0;
}