mirror of https://github.com/rusefi/ChibiOS.git
Fixed VRQ entry name.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15627 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
3b2615a8e6
commit
d6e1b49664
11
.project
11
.project
|
@ -10,7 +10,7 @@
|
|||
</natures>
|
||||
<filteredResources>
|
||||
<filter>
|
||||
<id>1624355780685</id>
|
||||
<id>1652790681565</id>
|
||||
<name></name>
|
||||
<type>26</type>
|
||||
<matcher>
|
||||
|
@ -18,5 +18,14 @@
|
|||
<arguments>1.0-name-matches-false-false-debug</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
<filter>
|
||||
<id>1652790681575</id>
|
||||
<name></name>
|
||||
<type>26</type>
|
||||
<matcher>
|
||||
<id>org.eclipse.ui.ide.multiFilter</id>
|
||||
<arguments>1.0-name-matches-false-false-debug_win</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
</filteredResources>
|
||||
</projectDescription>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue