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 ?