the interrupt routines
[my-code/arm.git] / betty / interrupts.c
diff --git a/betty/interrupts.c b/betty/interrupts.c
new file mode 100644 (file)
index 0000000..fa1fcc1
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * interrupts.c - arm exception handling
+ *
+ * author: hackbard@hackdaworld.org
+ *
+ */
+
+#include "interrupts.h"
+
+/*
+ * functions
+ */
+
+/*
+ * the actual exception handlers (as defined in startup.s)
+ */
+
+// reset
+void interrupt_handler_reset(void) {
+}
+
+// undefined instruction
+void interrupt_handler_undef_instruction(void) {
+}
+
+// software interrupt
+void interrupt_handler_soft_ir(void) {
+}
+
+// prefetch abort
+void interrupt_handler_prefetch_abort(void) {
+}
+
+// data abort
+void interrupt_handler_data_abort(void) {
+}
+
+// irq
+void interrupt_handler_irq(void) {
+}
+
+// fiq
+void interrupt_handler_fiq(void) {
+}
+