This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How to reset in user start routine with CCS 6.0 (MSP430F249)

Hi,


I write a start() routine because I don't want to use _c_int00* TI function for example:

#pragma vector=RESET_VECTOR
#pragma CLINK(start)
extern void __interrupt start()
{
   __asm("\t   MOV.W\t    #__STACK_END,SP");
   main();
}

and I give information to the linker with "--entry_point start" option but the vector address

But in my vector table I have always the address of  _c_int00_noinit_noexit.


How to put the address of start function in reset vector of vector table ?