aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/ports/ARM/compilers/GCC/crt0.s
diff options
context:
space:
mode:
Diffstat (limited to 'os/common/ports/ARM/compilers/GCC/crt0.s')
-rw-r--r--os/common/ports/ARM/compilers/GCC/crt0.s6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/common/ports/ARM/compilers/GCC/crt0.s b/os/common/ports/ARM/compilers/GCC/crt0.s
index b8e6c6614..4e7106fb5 100644
--- a/os/common/ports/ARM/compilers/GCC/crt0.s
+++ b/os/common/ports/ARM/compilers/GCC/crt0.s
@@ -46,12 +46,12 @@
/*
* Reset handler.
*/
- .global ResetHandler
-ResetHandler:
+ .global Reset_Handler
+Reset_Handler:
/*
* Stack pointers initialization.
*/
- ldr r0, =__ram_end__
+ ldr r0, =___stacks_end__
/* Undefined */
msr CPSR_c, #MODE_UND | I_BIT | F_BIT
mov sp, r0