vector_gcc.S 709 B

12345678910111213141516171819202122232425262728293031
  1. @-------------------------------------------------------------------------------
  2. @ sys_intvecs.asm
  3. @
  4. @ (c) Texas Instruments 2009-2013, All rights reserved.
  5. @
  6. .section .vectors, "ax"
  7. .code 32
  8. @-------------------------------------------------------------------------------
  9. @ import reference for interrupt routines
  10. .globl _reset
  11. .globl turnon_VFP
  12. .globl vector_svc
  13. .globl vector_pabort
  14. .globl vector_dabort
  15. .globl vector_resv
  16. .globl IRQ_Handler
  17. .globl system_vectors
  18. system_vectors:
  19. b _reset
  20. b turnon_VFP
  21. b vector_svc
  22. b vector_pabort
  23. b vector_dabort
  24. b vector_resv
  25. b IRQ_Handler
  26. ldr pc,[pc,#-0x1b0]