summaryrefslogtreecommitdiffstats
path: root/ape/include
diff options
context:
space:
mode:
authorEvan Lojewski <github@meklort.com>2021-02-06 11:56:07 -0700
committerGitHub <noreply@github.com>2021-02-06 11:56:07 -0700
commitbbd2bb18c7ba73d3ff180532435de241d2afc21e (patch)
tree29548083c6f60bba80d0ce8e5cb1c8a86c3d96c5 /ape/include
parentd41199eb44665c4c0665feeeffa29a6756018af6 (diff)
downloadbcm5719-ortega-bbd2bb18c7ba73d3ff180532435de241d2afc21e.tar.gz
bcm5719-ortega-bbd2bb18c7ba73d3ff180532435de241d2afc21e.zip
vectors: Move vector names to a header. (#204)
Diffstat (limited to 'ape/include')
-rw-r--r--ape/include/ape_main.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/ape/include/ape_main.h b/ape/include/ape_main.h
index 7fe3ee6..8eae90d 100644
--- a/ape/include/ape_main.h
+++ b/ape/include/ape_main.h
@@ -74,4 +74,19 @@ typedef struct
*/
extern vector_table_t gVectors;
+void __attribute__((interrupt)) IRQ_NMI(void);
+void __attribute__((interrupt)) IRQ_HardFault(void);
+void __attribute__((interrupt)) IRQ_MemoryManagmentFault(void);
+void __attribute__((interrupt)) IRQ_BusFault(void);
+void __attribute__((interrupt)) IRQ_UsageFault(void);
+void __attribute__((interrupt)) IRQ_SVCall(void);
+void __attribute__((interrupt)) IRQ_Debug(void);
+void __attribute__((interrupt)) IRQ_PendSV(void);
+void __attribute__((interrupt)) IRQ_Systick(void);
+
+void __attribute__((interrupt)) IRQ_RxPacketEven(void);
+void __attribute__((interrupt)) IRQ_RxPacketOdd(void);
+void __attribute__((interrupt)) IRQ_RMU(void);
+void __attribute__((interrupt)) IRQ_VoltageSource(void);
+
#endif /* APE_MAIN_H */
OpenPOWER on IntegriCloud