vector_gcc.S 935 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2013-07-05 Bernard the first version
  9. */
  10. .section .vectors, "ax"
  11. .code 32
  12. .globl system_vectors
  13. system_vectors:
  14. ldr pc, _vector_reset
  15. ldr pc, _vector_undef
  16. ldr pc, _vector_swi
  17. ldr pc, _vector_pabt
  18. ldr pc, _vector_dabt
  19. ldr pc, _vector_resv
  20. ldr pc, _vector_irq
  21. ldr pc, _vector_fiq
  22. .globl _reset
  23. .globl vector_undef
  24. .globl vector_swi
  25. .globl vector_pabt
  26. .globl vector_dabt
  27. .globl vector_resv
  28. .globl vector_irq
  29. .globl vector_fiq
  30. _vector_reset:
  31. .word _reset
  32. _vector_undef:
  33. .word vector_undef
  34. _vector_swi:
  35. .word vector_swi
  36. _vector_pabt:
  37. .word vector_pabt
  38. _vector_dabt:
  39. .word vector_dabt
  40. _vector_resv:
  41. .word vector_resv
  42. _vector_irq:
  43. .word vector_irq
  44. _vector_fiq:
  45. .word vector_fiq
  46. .balignl 16,0xdeadbeef