This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

startup code

Can anybody explain what is the meanig of the below statemnets? How to Use these handlers.

Undef_Handler   B       Undef_Handler
SWI_Handler     B       SWI_Handler
PAbt_Handler    B       PAbt_Handler
DAbt_Handler    B       DAbt_Handler
IRQ_Handler     B       IRQ_Handler
FIQ_Handler     B       FIQ_Handler

Parents
  • Looks like an interrupt vector table. According to ARM assembly language syntax, each line should mean

    label intruction_mnemonic instruction_operand
    


    So I assume these entries in the interrupt vector table are endless loops (branch to self).

    - mike

Reply
  • Looks like an interrupt vector table. According to ARM assembly language syntax, each line should mean

    label intruction_mnemonic instruction_operand
    


    So I assume these entries in the interrupt vector table are endless loops (branch to self).

    - mike

Children
No data