This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
Part of my cmd file
SECTIONS
{
/* Allocate program areas: */
.cinit : > FLASHB PAGE = 0, ALIGN(4)
.pinit : > FLASHB, PAGE = 0, ALIGN(4)
.text : >> FLASHB | FLASHC | FLASHD | FLASHE PAGE = 0, ALIGN(4)
.cio : > FLASHB, PAGE = 0, ALIGN(4)
codestartBOOT : > BEGIN PAGE = 0, ALIGN(4)
codestartAPP : > BEGINAPP377S PAGE = 0, ALIGN(4)
How do I use codestartBOOT and codestartAPP in my application? . If I define them as extern I got error #10234-D: unresolved symbols remain
Thanks,
EVS
Ozino Odharo said:EVS,
Have you included the header files were those definitions are defined? There is this document that details how to define and access defined sections. processors.wiki.ti.com/.../Linker_Command_File_Primer
Regards,
Ozino
Ozino,
I don't know if this is what you are trying to tell. But what I needed to know is you can use preprocessor commands in the cmd file.
Thanks,
EVS