Bug 3578927 again.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4774 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
4155ce3fa5
commit
133ac34c02
|
@ -282,9 +282,6 @@ void ResetHandler(void) {
|
||||||
asm volatile ("msr CONTROL, %0" : : "r" (reg));
|
asm volatile ("msr CONTROL, %0" : : "r" (reg));
|
||||||
asm volatile ("isb");
|
asm volatile ("isb");
|
||||||
|
|
||||||
/* Early initialization hook invocation.*/
|
|
||||||
__early_init();
|
|
||||||
|
|
||||||
#if CRT0_INIT_STACKS
|
#if CRT0_INIT_STACKS
|
||||||
/* Main and Process stacks initialization.*/
|
/* Main and Process stacks initialization.*/
|
||||||
fill32(&__main_stack_base__,
|
fill32(&__main_stack_base__,
|
||||||
|
@ -295,6 +292,9 @@ void ResetHandler(void) {
|
||||||
CRT0_STACKS_FILL_PATTERN);
|
CRT0_STACKS_FILL_PATTERN);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Early initialization hook invocation.*/
|
||||||
|
__early_init();
|
||||||
|
|
||||||
#if CRT0_INIT_DATA
|
#if CRT0_INIT_DATA
|
||||||
/* DATA segment initialization.*/
|
/* DATA segment initialization.*/
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue