I read a few postings on how to manually set the address of _c_int00, but none were for the MSP430.
I am running application code under control of a bootloader and need to place the startup code at a known address.
I modified the linker file as follows:
(a) added "STARTUP : origin = 0x1100, length = 0x0080" in the Memory block
(b) changed the Flash definition to "FLASH : origin = 0x1200, length = 0xAD00" in the Memory block
(c) added ".text:_c_int00 : {} > STARTUP /* STARTUP CODE SPACE */" in the sections block
This did not work; my code ended up starting at 0x1200, but _c_int00 is in higher memory at 0x136C
I had all this working with the IAR IDE, am now moving to CC4 and need the same functionality. Thanks.
Stan