summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/board/compal/exceptions_redirected.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/firmware/board/compal/exceptions_redirected.S')
-rw-r--r--src/target/firmware/board/compal/exceptions_redirected.S20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/target/firmware/board/compal/exceptions_redirected.S b/src/target/firmware/board/compal/exceptions_redirected.S
new file mode 100644
index 00000000..69083962
--- /dev/null
+++ b/src/target/firmware/board/compal/exceptions_redirected.S
@@ -0,0 +1,20 @@
+
+/* Exception Vectors like they are needed for the exception vector
+ indirection of the internal boot ROM. The following section must be liked
+ to appear at 0x80001c */
+.section .text.exceptions
+_undef_instr:
+ b handle_abort
+_sw_interr:
+ b _sw_interr
+_prefetch_abort:
+ b handle_abort
+_data_abort:
+ b handle_abort
+_reserved:
+ b _reserved
+_irq:
+ b irq_entry
+_fiq:
+ b fiq_entry
+