vector_gcc.S 869 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. */
  9. @-------------------------------------------------------------------------------
  10. @ sys_intvecs.asm
  11. @
  12. @ (c) Texas Instruments 2009-2013, All rights reserved.
  13. @
  14. .section .vectors, "ax"
  15. .code 32
  16. @-------------------------------------------------------------------------------
  17. @ import reference for interrupt routines
  18. .globl _reset
  19. .globl turnon_VFP
  20. .globl vector_svc
  21. .globl vector_pabort
  22. .globl vector_dabort
  23. .globl vector_resv
  24. .globl IRQ_Handler
  25. .globl system_vectors
  26. system_vectors:
  27. b _reset
  28. b turnon_VFP
  29. b vector_svc
  30. b vector_pabort
  31. b vector_dabort
  32. b vector_resv
  33. b IRQ_Handler
  34. ldr pc,[pc,#-0x1b0]