the interrupt routines
[my-code/arm.git] / betty / interrupts.h
1 /*
2  * interrupts.h - arm exception handling header file
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #include "lpc2xxx.h"
9 #include "types.h"
10
11 /* function prototypes */
12
13 void interrupt_handler_reset(void);
14 void interrupt_handler_undef_instruction(void);
15 void interrupt_handler_soft_ir(void);
16 void interrupt_handler_prefetch_abort(void);
17 void interrupt_handler_data_abort(void);
18 void interrupt_handler_irq(void);
19 void interrupt_handler_fiq(void);
20