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.

Compiler/TMS320F28377D: Section for the local variable in command file

Part Number: TMS320F28377D


Tool/software: TI C/C++ Compiler

Hi everyone

I read the following categorization in the "F2837xd_Microcontroller_MDW_2-0.pdf" for the C/C++ code that have wrote in the IDE for C2000:

Now what if we write :

int x = 2;
int y = 2;

void main (void)
{
   long z = InitVal;
   
   z = x + y;
}

which section is used for "InitVal" for the "z" local variable ?

Thank you All