summaryrefslogtreecommitdiffstats
path: root/bsps/nios2/nios2_iss/start/bspstart.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/nios2/nios2_iss/start/bspstart.c')
-rw-r--r--bsps/nios2/nios2_iss/start/bspstart.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/bsps/nios2/nios2_iss/start/bspstart.c b/bsps/nios2/nios2_iss/start/bspstart.c
new file mode 100644
index 0000000000..c619e583ae
--- /dev/null
+++ b/bsps/nios2/nios2_iss/start/bspstart.c
@@ -0,0 +1,31 @@
+/*
+ * This routine starts the application. It includes application,
+ * board, and monitor specific initialization and configuration.
+ * The generic CPU dependent initialization has been performed
+ * before this routine is invoked.
+ *
+ * COPYRIGHT (c) 2005-2006 Kolja Waschk rtemsdev/ixo.de
+ * Derived from no_cpu/no_bsp/startup/bspstart.c 1.23.
+ * COPYRIGHT (c) 1989-1999.
+ * 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 <sys/cdefs.h>
+
+#include <bsp.h>
+#include <rtems/score/nios2-utility.h>
+#include <bsp/bootcard.h>
+
+void bsp_start( void )
+{
+ __asm__ volatile (
+ ".globl _Nios2_ISR_Status_mask\n"
+ ".globl _Nios2_ISR_Status_bits\n"
+ ".set _Nios2_ISR_Status_mask, " __XSTRING(NIOS2_ISR_STATUS_MASK_IIC) "\n"
+ ".set _Nios2_ISR_Status_bits, " __XSTRING(NIOS2_ISR_STATUS_BITS_IIC)
+ );
+}