I'm working with a MSP430F2619 and CCS V5.3. I need to fix memory address 0x6000 (not utilized) to a predetermined (constant16-bit value. The assembler directive ORG doesn't exist. Any suggestions?
This doesn't work: #pragma LOCATION (0xcb8c, 0x6000) location 0x6000 is 0xffff
Neither does this: unsigned int const CRC_word = 0xcb8c; #pragma LOCATION (CRC_word, 0x6000) location 0x6000 is 0xffff