summaryrefslogtreecommitdiffstats
path: root/bsps/i386/pc386/start/bspidle.S
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/i386/pc386/start/bspidle.S')
-rw-r--r--bsps/i386/pc386/start/bspidle.S19
1 files changed, 19 insertions, 0 deletions
diff --git a/bsps/i386/pc386/start/bspidle.S b/bsps/i386/pc386/start/bspidle.S
new file mode 100644
index 0000000000..740671afc1
--- /dev/null
+++ b/bsps/i386/pc386/start/bspidle.S
@@ -0,0 +1,19 @@
+/*
+ * Idle Thread Body
+ *
+ * COPYRIGHT (c) 2016.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <rtems/asm.h>
+
+.p2align 4
+
+PUBLIC(bsp_idle_thread)
+SYM(bsp_idle_thread):
+hltloop: hlt
+ jmp hltloop