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