From 026d6884ee8185fe08296b31d4bb570662cf2add Mon Sep 17 00:00:00 2001 From: hackbard Date: Sat, 15 Sep 2007 01:03:06 +0200 Subject: [PATCH] interrupts --- betty/startup.s | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/betty/startup.s b/betty/startup.s index af87f6e..7cf1e10 100644 --- a/betty/startup.s +++ b/betty/startup.s @@ -51,20 +51,13 @@ # exception handling must go to the very beginning b handler_reset - b handler_undef_instruction - b handler_soft_ir - b handler_prefetch_abort - b handler_data_abort + b interrupt_handler_undef_instruction + b interrupt_handler_soft_ir + b interrupt_handler_prefetch_abort + b interrupt_handler_data_abort nop - b handler_irq - b handler_fiq - - handler_undef_instruction: .word interrupt_handler_undef_instruction - handler_soft_ir: .word interrupt_handler_soft_ir - handler_prefetch_abort: .word interrupt_handler_prefetch_abort - handler_data_abort: .word interrupt_handler_data_abort - handler_irq: .word interrupt_handler_irq - handler_fiq: .word interrupt_handler_fiq + b interrupt_handler_irq + b interrupt_handler_fiq # reset handling goes here -- 2.20.1