vector_gcc.S 920 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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_Handler
  19. .globl turnon_VFP
  20. .globl SVC_Handler
  21. .globl Prefetch_Handler
  22. .globl Abort_Handler
  23. .globl Reserved_Handler
  24. .globl IRQ_Handler
  25. .globl FIQ_Handler
  26. .globl system_vectors
  27. system_vectors:
  28. b Reset_Handler
  29. b turnon_VFP
  30. b SVC_Handler
  31. b Prefetch_Handler
  32. b Abort_Handler
  33. b Reserved_Handler
  34. b IRQ_Handler
  35. b FIQ_Handler