Vladimir Makarov wrote:
Hi!
1. Commands break...if..., watch..., break...commands...end
are carried out as simple breakpoints (break...). It is correct?
What do you neab by a simle breakpoint? When using msp430-gdbproxy the
hardware breakpoint functions of the MSP430 are used. The number of
available breakpoints varies from 2 in the simple devices to 8 in the
biggest ones.
2.
msp430-gcc -mmcu=msp430x149 -D_GNU_ASSEMBLER_ -nostartfiles -nostandartlibs -g
fet140_1.S -o fet140_1
msp430-gdb fet140_1
GNU gdb 6.0
Copyright 2003 Free Software Foundation, Inc.
.....
This GDB was configured as "--host=i686-pc-cygwin --target=msp430"...
0x0000ffff in ?? ()
(no debugging symbols found)...
^^^^^^^^^^^^^^^^^^^^^^^^^^ :(
(gdb)
Why?
You didn't put "-g" in the gcc command.
Steve