aboutsummaryrefslogtreecommitdiff
path: root/interrupt_vector.S
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2019-12-26 18:48:38 +0100
committerWojtek Kosior <kwojtus@protonmail.com>2019-12-26 18:48:38 +0100
commit9d587f9f750253461314757f2f861c5214563120 (patch)
tree92fa206180daa7297a86eb240f906b9b84fa5126 /interrupt_vector.S
parent93a1c704c99a48803d118f66ac4fe08510fb4b89 (diff)
downloadrpi-MMU-example-9d587f9f750253461314757f2f861c5214563120.tar.gz
rpi-MMU-example-9d587f9f750253461314757f2f861c5214563120.zip
improve linking of interrupts
Diffstat (limited to 'interrupt_vector.S')
-rw-r--r--interrupt_vector.S4
1 files changed, 3 insertions, 1 deletions
diff --git a/interrupt_vector.S b/interrupt_vector.S
index f71330b..d20bf6d 100644
--- a/interrupt_vector.S
+++ b/interrupt_vector.S
@@ -1,4 +1,4 @@
-.section ".interrupt_vectors.text"
+.section ".interrupts.vector"
.global abort_handler
.local generic_handler
@@ -12,6 +12,8 @@ _interrupt_vectors:
b generic_handler
b generic_handler
+.section ".interrupts.text"
+
generic_handler:
b generic_handler
abort_handler_caller: