From 6d10f951d5c5ebae58f7c24df1066a479b68d5fa Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Thu, 24 Jul 2025 13:54:25 +0200 Subject: nrf52832: add clock driver --- src/boot.s | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/boot.s') 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 -- cgit v1.2.3