summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/shared/start/vectors_entry.S
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/powerpc/shared/start/vectors_entry.S')
-rw-r--r--bsps/powerpc/shared/start/vectors_entry.S22
1 files changed, 22 insertions, 0 deletions
diff --git a/bsps/powerpc/shared/start/vectors_entry.S b/bsps/powerpc/shared/start/vectors_entry.S
new file mode 100644
index 0000000000..07b17a48af
--- /dev/null
+++ b/bsps/powerpc/shared/start/vectors_entry.S
@@ -0,0 +1,22 @@
+/*
+ * (c) 2007, Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
+ *
+ *
+ * This file contains the entry point vector needed by some bootloaders
+ * derived from "vectors.S"
+ */
+
+#include <rtems/asm.h>
+#include <rtems/score/cpu.h>
+
+ PUBLIC_VAR (__rtems_start)
+ .section .entry_point_section,"awx",@progbits
+/*
+ * Entry point information used by bootloader code
+ */
+SYM (__rtems_start):
+ .long __rtems_entry_point
+
+ /*
+ * end of special Entry point section
+ */