File tree Expand file tree Collapse file tree
ref_app/target/micros/xtensa_esp32_p4 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ Copyright Christopher Kormanyos 2026.
3+ Distributed under the Boost Software License,
4+ Version 1.0. (See accompanying file LICENSE_1_0.txt
5+ or copy at http://www.boost.org/LICENSE_1_0.txt)
6+ */
7+
8+ /* Originally from: */
19/* *****************************************************************************************
210 Filename : Memory_Map.ld
311
Original file line number Diff line number Diff line change 11#
2- # Copyright Christopher Kormanyos 2025 - 2026.
2+ # Copyright Christopher Kormanyos 2026.
33# Distributed under the Boost Software License,
44# Version 1.0. (See accompanying file LICENSE_1_0.txt
55# or copy at http://www.boost.org/LICENSE_1_0.txt)
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ void Startup_Init(void)
6868//-----------------------------------------------------------------------------------------
6969static void Startup_InitRam (void )
7070{
71+ // Use my own standard static RAM initialization.
72+
7173 extern void crt_init_ram (void );
7274
7375 crt_init_ram ();
@@ -82,6 +84,8 @@ static void Startup_InitRam(void)
8284//-----------------------------------------------------------------------------------------
8385static void Startup_InitCtors (void )
8486{
87+ // Use my own standard static constructor initialization.
88+
8589 extern void crt_init_ctors ();
8690
8791 crt_init_ctors ();
You can’t perform that action at this time.
0 commit comments