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/MSP430F147: CCS equivalent of IAR's __no_init?

Part Number: MSP430F147


Tool/software: TI C/C++ Compiler

What is the CCS equivalent of the IAR __no_init placed before an array declaration?

__no_init unsigned char array[512];

Is it #pragma RETAIN(array); or does this just tell the linker to include this array area even if it is not referenced in the code?