Hello
Notation to use is different for DSP56800E and for HC12.
For HC12 if you want to disable dead striping for a module called myfile.c, use following notation in your application .prm file.
ENTRIES
myfile.c.o:*
END
You can enumerate several files in the ENTRIES block. Just use space character as separator.
For DSP58000E, you can disable dead striping for a specific section using linker command KEEP_SECTION.
You just have to place whole code from that module in a user defined section and disable dead striping for that section.
CrasyCat