I'm asking for assistance to properly edit lnk_msp430f2610.cmd so that my CRC word will reside at 0x6000 (not used). I've added the following statements:
#pragma DATA_SECTION (CRC_expected, ".CRC_location");
#pragma DATA_ALIGN(CRC_expected, 2);
unsigned int const CRC_expected[1]={0xCB8C};
I'm not certain if DATA_ALIGN is necessary. I"ve looked over section 7.5 of slau131g.pdf and I am not certain where and what to add to the linker command file to set the location of CRC_expected to be 0x6000. The map file says it's now at 0x0.