summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/startup/bsp_fatal_halt.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/startup/bsp_fatal_halt.c')
-rw-r--r--c/src/lib/libbsp/i386/pc386/startup/bsp_fatal_halt.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/startup/bsp_fatal_halt.c b/c/src/lib/libbsp/i386/pc386/startup/bsp_fatal_halt.c
deleted file mode 100644
index 07bbd793e0..0000000000
--- a/c/src/lib/libbsp/i386/pc386/startup/bsp_fatal_halt.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * 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 <bsp.h>
-
-void _CPU_Fatal_halt(uint32_t source, uint32_t error)
-{
- __asm__ volatile (
- "cli\n\t"
- "movl %0,%%eax\n\t"
- "hlt\n\t"
- : "=r" ((error))
- : "0" ((error))
- );
- #ifdef __GNUC__
- __builtin_unreachable();
- #endif
-}