the interrupt routines
[my-code/arm.git] / betty / interrupts.h
diff --git a/betty/interrupts.h b/betty/interrupts.h
new file mode 100644 (file)
index 0000000..9c1b8aa
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ * interrupts.h - arm exception handling header file
+ *
+ * author: hackbard@hackdaworld.org
+ *
+ */
+
+#include "lpc2xxx.h"
+#include "types.h"
+
+/* function prototypes */
+
+void interrupt_handler_reset(void);
+void interrupt_handler_undef_instruction(void);
+void interrupt_handler_soft_ir(void);
+void interrupt_handler_prefetch_abort(void);
+void interrupt_handler_data_abort(void);
+void interrupt_handler_irq(void);
+void interrupt_handler_fiq(void);
+