diff options
Diffstat (limited to 'src/boot.s')
-rw-r--r-- | src/boot.s | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |