1
0

vector_iar.S 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. ; * 2024-03-11 Wangyuqiang first version
  9. ; */
  10. ;@-------------------------------------------------------------------------------
  11. ;@ sys_intvecs.asm
  12. ;@
  13. ;@ (c) Texas Instruments 2009-2013, All rights reserved.
  14. ;@
  15. ;SECTION .vectors:"ax"
  16. ;@-------------------------------------------------------------------------------
  17. ;@ import reference for interrupt routines
  18. IMPORT Reset_Handler
  19. IMPORT Undefined_Handler
  20. IMPORT SVC_Handler
  21. IMPORT Prefetch_Handler
  22. IMPORT Abort_Handler
  23. IMPORT Reserved_Handler
  24. IMPORT IRQ_Handler
  25. IMPORT FIQ_Handler
  26. ;/*
  27. ; * int system_vectors(void);
  28. ; */
  29. EXPORT system_vectors
  30. SECTION .intvec:CODE:NOROOT(2)
  31. system_vectors:
  32. b Reset_Handler
  33. b Undefined_Handler
  34. b SVC_Handler
  35. b Prefetch_Handler
  36. b Abort_Handler
  37. b Reserved_Handler
  38. b IRQ_Handler
  39. b FIQ_Handler
  40. END