S32k怎么在未用到的TEXT段填充数据

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

S32k怎么在未用到的TEXT段填充数据

544 Views
jiabingqiang
Contributor I

S32k怎么在未用到的TEXT段填充数据

/* The program code and other data goes into internal flash */
.text :
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
*(.text*) /* .text* sections (code) */
*(.rodata) /* .rodata sections (constants, strings, etc.) */
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */
*(.init) /* section used in crti.o files */
*(.fini) /* section used in crti.o files */
*(.eh_frame) /* section used in crtbegin.o files */
. = ALIGN(4);
} > m_Appl

how to place variable in allocate ram section?
0 Kudos
1 Reply

534 Views
PetrS
NXP TechSupport
NXP TechSupport
0 Kudos