aboutsummaryrefslogtreecommitdiff
path: root/include/isr_vector.h
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2024-11-15 02:48:27 -0700
committerJosh Rahm <joshuarahm@gmail.com>2024-11-15 02:48:27 -0700
commitede9bee7f22fd5d0e1bacb7689f1cac23992b70b (patch)
tree904d8d80063aa415b9e407f6ec73aa874483ebcd /include/isr_vector.h
parent63054d2fdf9a0ae3e9dcdd0d20eb8714671a010b (diff)
downloadch573-ede9bee7f22fd5d0e1bacb7689f1cac23992b70b.tar.gz
ch573-ede9bee7f22fd5d0e1bacb7689f1cac23992b70b.tar.bz2
ch573-ede9bee7f22fd5d0e1bacb7689f1cac23992b70b.zip
UART is working.
Diffstat (limited to 'include/isr_vector.h')
-rw-r--r--include/isr_vector.h2
1 files changed, 1 insertions, 1 deletions
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(); \
} \