the interrupt routines
[my-code/arm.git] / betty / interrupts.c
1 /*
2  * interrupts.c - arm exception handling
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #include "interrupts.h"
9
10 /*
11  * functions
12  */
13
14 /*
15  * the actual exception handlers (as defined in startup.s)
16  */
17
18 // reset
19 void interrupt_handler_reset(void) {
20 }
21
22 // undefined instruction
23 void interrupt_handler_undef_instruction(void) {
24 }
25
26 // software interrupt
27 void interrupt_handler_soft_ir(void) {
28 }
29
30 // prefetch abort
31 void interrupt_handler_prefetch_abort(void) {
32 }
33
34 // data abort
35 void interrupt_handler_data_abort(void) {
36 }
37
38 // irq
39 void interrupt_handler_irq(void) {
40 }
41
42 // fiq
43 void interrupt_handler_fiq(void) {
44 }
45