Cosmic uses the #pragma section syntax, while this compiler employs either #pragma DATA_SEG or #pragma CONST_SEG.
#ifdef __MWERKS__ #pragma DATA_SEG APPLDATA_SEG #else #pragma section {APPLDATA} #endif
#ifdef __MWERKS__ #pragma CONST_SEG CONSTVECT_SEG #else #pragma section const {CONSTVECT} #endif
Use the segments (in the examples above CONSTVECT_SEG and APPLDATA_SEG) in the linker *.prm file in the PLACEMENT block.