From d6e1b49664bcda7cc2a3c6d46b43e4336449593a Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 17 May 2022 12:39:16 +0000 Subject: [PATCH] Fixed VRQ entry name. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15627 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- .project | 11 ++++++++++- os/common/startup/ARMCMx-SB/compilers/GCC/crt0.S | 10 +++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.project b/.project index 8dd01cb31..6d14b1dc9 100644 --- a/.project +++ b/.project @@ -10,7 +10,7 @@ - 1624355780685 + 1652790681565 26 @@ -18,5 +18,14 @@ 1.0-name-matches-false-false-debug + + 1652790681575 + + 26 + + org.eclipse.ui.ide.multiFilter + 1.0-name-matches-false-false-debug_win + + diff --git a/os/common/startup/ARMCMx-SB/compilers/GCC/crt0.S b/os/common/startup/ARMCMx-SB/compilers/GCC/crt0.S index 84ca559d5..7a49ed596 100644 --- a/os/common/startup/ARMCMx-SB/compilers/GCC/crt0.S +++ b/os/common/startup/ARMCMx-SB/compilers/GCC/crt0.S @@ -100,7 +100,7 @@ __sandbox: .long 0xFE9154C0 .long 32 .long __crt0_entry .long __crt0_exit - .long __crt0_vfq + .long __crt0_vrq .long 0 .long 0 @@ -119,13 +119,13 @@ environ: .text - /* Default VFQ handler.*/ + /* Default VRQ handler.*/ .align 2 .thumb_func - .weak __crt0_vfq -__crt0_vfq: + .weak __crt0_vrq +__crt0_vrq: ldr r0, =0xFFFFFFFF - /* Falls into __crt0_exit.*/ + svc #1 /* Default exit method, calling OS exit().*/ .align 2