From ede9bee7f22fd5d0e1bacb7689f1cac23992b70b Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Fri, 15 Nov 2024 02:48:27 -0700 Subject: UART is working. --- include/isr_vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/isr_vector.h') diff --git a/include/isr_vector.h b/include/isr_vector.h index 65359a5..6059875 100644 --- a/include/isr_vector.h +++ b/include/isr_vector.h @@ -46,7 +46,7 @@ void irq_on_wdog_bat(void); * long jump). This stub is compiled and linked promimal to the ISR vector. \ */ \ void __attribute__((interrupt)) \ - __attribute__((__section__(".isr_vector"))) irq_on_##name(void) \ + __attribute__((__section__(".isr_vector.routines"))) irq_on_##name(void) \ { \ _real__irq_on_##name(); \ } \ -- cgit