We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27de5e7 commit f016f1dCopy full SHA for f016f1d
targets/TARGET_STM/TARGET_STM32U0/TARGET_STM32U083xC/TOOLCHAIN_GCC_ARM/startup_stm32u083xx.s
@@ -54,9 +54,11 @@ defined in linker script */
54
.section .text.Reset_Handler
55
.weak Reset_Handler
56
.type Reset_Handler, %function
57
+
58
Reset_Handler:
59
ldr r0, =_estack
60
mov sp, r0 /* set stack pointer */
61
62
/* Call the clock system initialization function.*/
63
bl SystemInit
64
@@ -90,16 +92,12 @@ FillZerobss:
90
92
LoopFillZerobss:
91
93
cmp r2, r4
94
bcc FillZerobss
-
-/* Call static constructors */
95
- bl __libc_init_array
96
97
/* Call the application's entry point.*/
98
- bl _start
99
+ bl _start
100
LoopForever:
101
b LoopForever
102
103
.size Reset_Handler, .-Reset_Handler
104
105
/**
0 commit comments