12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Copyright (c) 2006-2018, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- */
- @-------------------------------------------------------------------------------
- @ sys_intvecs.asm
- @
- @ (c) Texas Instruments 2009-2013, All rights reserved.
- @
- .section .vectors, "ax"
- .code 32
- @-------------------------------------------------------------------------------
- @ import reference for interrupt routines
- .globl Reset_Handler
- .globl turnon_VFP
- .globl SVC_Handler
- .globl Prefetch_Handler
- .globl Abort_Handler
- .globl Reserved_Handler
- .globl IRQ_Handler
- .globl FIQ_Handler
- .globl system_vectors
- system_vectors:
- b Reset_Handler
- b turnon_VFP
- b SVC_Handler
- b Prefetch_Handler
- b Abort_Handler
- b Reserved_Handler
- b IRQ_Handler
- b FIQ_Handler
|