Skip to content

Commit 5b318d7

Browse files
committed
Clarify comments and dates
1 parent 2e786dc commit 5b318d7

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

ref_app/target/micros/xtensa_esp32_p4/make/xtensa_esp32_p4.ld

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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

ref_app/target/micros/xtensa_esp32_p4/make/xtensa_esp32_p4_files.gmk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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)

ref_app/target/micros/xtensa_esp32_p4/startup/Code/Startup/Startup.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ void Startup_Init(void)
6868
//-----------------------------------------------------------------------------------------
6969
static 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
//-----------------------------------------------------------------------------------------
8385
static 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();

0 commit comments

Comments
 (0)