rt-thread-official/libcpu/arm/cortex-r4/vector_ccs.asm

37 lines
830 B
NASM
Raw Normal View History

;-------------------------------------------------------------------------------
; sys_intvecs.asm
;
; (c) Texas Instruments 2009-2013, All rights reserved.
;
.sect ".intvecs"
.arm
;-------------------------------------------------------------------------------
; import reference for interrupt routines
2013-10-19 21:50:42 +08:00
.ref _reset
.ref _dabort
2013-10-19 21:50:42 +08:00
.ref turnon_VFP
.ref IRQ_Handler
2013-10-19 21:50:42 +08:00
.def resetEntry
;-------------------------------------------------------------------------------
; interrupt vectors
resetEntry
2013-10-19 21:50:42 +08:00
b _reset
b turnon_VFP
svcEntry
b svcEntry
prefetchEntry
b prefetchEntry
b _dabort
reservedEntry
b reservedEntry
b IRQ_Handler
ldr pc,[pc,#-0x1b0]
;-------------------------------------------------------------------------------