From 60e8193e9b97dac369093aa8e86407467eb58f56 Mon Sep 17 00:00:00 2001 From: isiora Date: Thu, 18 Jan 2018 09:31:02 +0000 Subject: Added call to __core_init. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11313 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/common/startup/ARM/compilers/GCC/crt0.S | 3 +++ 1 file changed, 3 insertions(+) (limited to 'os/common/startup') diff --git a/os/common/startup/ARM/compilers/GCC/crt0.S b/os/common/startup/ARM/compilers/GCC/crt0.S index 43cb723ab..25f325fc3 100644 --- a/os/common/startup/ARM/compilers/GCC/crt0.S +++ b/os/common/startup/ARM/compilers/GCC/crt0.S @@ -120,6 +120,9 @@ bssloop: * Late initialization. */ #if !defined(THUMB_NO_INTERWORKING) +#if defined(CH_CFG_USE_MMU) + bl __core_init +#endif bl __late_init #else /* defined(THUMB_NO_INTERWORKING) */ add r0, pc, #1 -- cgit v1.2.3