diff options
Diffstat (limited to 'os/common')
-rw-r--r-- | os/common/startup/ARMCAx-TZ/compilers/GCC/crt0.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/os/common/startup/ARMCAx-TZ/compilers/GCC/crt0.S b/os/common/startup/ARMCAx-TZ/compilers/GCC/crt0.S index 43cb723ab..f9e807de7 100644 --- a/os/common/startup/ARMCAx-TZ/compilers/GCC/crt0.S +++ b/os/common/startup/ARMCAx-TZ/compilers/GCC/crt0.S @@ -18,7 +18,7 @@ * @file crt0.S
* @brief Generic ARM startup file.
*
- * @addtogroup ARM_GCC_STARTUP
+ * @addtogroup ARMCAx_GCC_STARTUP
* @{
*/
@@ -120,6 +120,9 @@ bssloop: * Late initialization.
*/
#if !defined(THUMB_NO_INTERWORKING)
+#if defined(CH_CFG_USE_MMU)
+ bl __mmu_init
+#endif
bl __late_init
#else /* defined(THUMB_NO_INTERWORKING) */
add r0, pc, #1
|