In the TI MSP430F149 / CCS4, how do I force the _c_int00 to be loaded at 0x1600? I am using the v3.3 code generation tools.
In CCE, this worked in the link file:
.boot :>0x1600
{
-l rts430.lib(.text)
}
But in CCS 4, that no longer works. I tried libc.a instead of rts430.lib, but that didn't work, either. NOT using large memory model -- just using MSP430F149.
The linker gives a warning:
no matching section -l rts430.lib<boot.obj>(.text) SMaster120 line 0 1287173430693 1659
And the map file shows no boot section and _c_int00 is not at 0x1600.