diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2024-11-15 02:48:27 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2024-11-15 02:48:27 -0700 |
commit | ede9bee7f22fd5d0e1bacb7689f1cac23992b70b (patch) | |
tree | 904d8d80063aa415b9e407f6ec73aa874483ebcd /include/isr_vector.h | |
parent | 63054d2fdf9a0ae3e9dcdd0d20eb8714671a010b (diff) | |
download | ch573-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.h | 2 |
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(); \ } \ |