Date: Mon, 17 Jan 94 09:13:41 -0500 From: DJ Delorie To: alex DOT alexander AT adam DOT com DOT au Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: DEBUG32 > When using debug32 version 1.09 on a large project how > can I find the memory locations of particular c-code statements > so that I can set breakpoints there. If you compile with "-g", you can just say "b 1 somefile.c#123" to set breakpoint one to line 123 of file somefile.c. Also, as you list the assembler, the source lines will get printed as appropriate (like CPU window of TD).