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?