git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9655 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
03dfc9a4c1
commit
4de9f399d6
|
@ -24,8 +24,10 @@ ifeq ($(USE_LINK_GC),)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Linker extra options here.
|
# Linker extra options here.
|
||||||
|
# NOTE: On XMC1100 the following symbols are mapped on the words CLK_VAL1 and
|
||||||
|
# CLK_VAL2.
|
||||||
ifeq ($(USE_LDOPT),)
|
ifeq ($(USE_LDOPT),)
|
||||||
USE_LDOPT =
|
USE_LDOPT = --defsym=MemManage_Handler=0xFFFFFFFF,--defsym=BusFault_Handler=0xFFFFFFFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Enable this if you want link time optimizations (LTO)
|
# Enable this if you want link time optimizations (LTO)
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file veneers_gcc.s
|
* @file veneers_gcc.S
|
||||||
* @brief XMC1100 veneers for GCC.
|
* @brief XMC1100 veneers for GCC.
|
||||||
*
|
*
|
||||||
* @addtogroup ARMCMx_XMC1100_VENEERS_GCC
|
* @addtogroup ARMCMx_XMC1100_VENEERS_GCC
|
||||||
|
@ -52,10 +52,8 @@ __veneers:
|
||||||
mov pc, r0
|
mov pc, r0
|
||||||
ldr r0, =HardFault_Handler
|
ldr r0, =HardFault_Handler
|
||||||
mov pc, r0
|
mov pc, r0
|
||||||
ldr r0, =MemManage_Handler
|
.long 0
|
||||||
mov pc, r0
|
.long 0
|
||||||
ldr r0, =BusFault_Handler
|
|
||||||
mov pc, r0
|
|
||||||
ldr r0, =UsageFault_Handler
|
ldr r0, =UsageFault_Handler
|
||||||
mov pc, r0
|
mov pc, r0
|
||||||
.long 0
|
.long 0
|
||||||
|
|
Loading…
Reference in New Issue