Yen-Ming Mark Lai wrote:
hello,
i was able to compile the following program with the command
msp430-gcc -mmcu=msp430x149 -Wall -pedantic hello.c -o hello
then i load hello into msp430-insight by opening the file.
i get this error in the command line and i don't know what it means.
0x113e <_unexpected_>: reti
please advise. thanks.
You should include "-g" in the command line if you want to use the
debugger. This makes the compiler include debugging information in the
executable file, which GDB or Indight need to do source level debugging.
Regards,
Steve