X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Farm.git;a=blobdiff_plain;f=betty%2Finterrupts.c;fp=betty%2Finterrupts.c;h=fa1fcc1f82dccc54816d7d26ea12aad43692c795;hp=0000000000000000000000000000000000000000;hb=6543545b048b7059941b0f6680227ec4ce26535e;hpb=026d6884ee8185fe08296b31d4bb570662cf2add diff --git a/betty/interrupts.c b/betty/interrupts.c new file mode 100644 index 0000000..fa1fcc1 --- /dev/null +++ b/betty/interrupts.c @@ -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) { +} +