aboutsummaryrefslogtreecommitdiff
path: root/src/boot.s
diff options
context:
space:
mode:
authorVictor Mignot <victor@vmignot.fr>2025-07-24 13:54:25 +0200
committerVictor Mignot <victor@vmignot.fr>2025-08-08 09:01:26 +0200
commit6d10f951d5c5ebae58f7c24df1066a479b68d5fa (patch)
tree3c6cb8385578b27c6d10cc6a41663fd647a77ebb /src/boot.s
parentb6b7ad8fc4e02e987601286699082c3009c424d8 (diff)
downloadnanji-6d10f951d5c5ebae58f7c24df1066a479b68d5fa.tar.gz
nrf52832: add clock driver
Diffstat (limited to 'src/boot.s')
-rw-r--r--src/boot.s8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/boot.s b/src/boot.s
index 626420c..a2bb4b2 100644
--- a/src/boot.s
+++ b/src/boot.s
@@ -3,6 +3,10 @@
.section .vector_table, "a"
.word __stack_top /* Initial stack pointer */
+
+/**
+ * Exceptions
+ */
.word _start /* Reset Handler */
.word _hang /* Non Maskable Interrupts */
.word _hang /* Hard Fault */
@@ -15,6 +19,10 @@
.word _hang /* PendSV */
.word _hang /* SysTick */
+/**
+ * IRQs
+ */
+
.text
.align