]> hackdaworld.org Git - my-code/arm.git/commitdiff
interrupts
authorhackbard <hackbard@staubsauger.localdomain>
Fri, 14 Sep 2007 23:03:06 +0000 (01:03 +0200)
committerhackbard <hackbard@staubsauger.localdomain>
Fri, 14 Sep 2007 23:03:06 +0000 (01:03 +0200)
betty/startup.s

index af87f6e37c9a62c43f14befb4dfd607e8f21f0d0..7cf1e107b3c222dc9faf006a31bf28d801b62dc4 100644 (file)
        # exception handling must go to the very beginning
 
        b handler_reset
        # 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
        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
 
 
        # reset handling goes here