Re: gdb question

2007-09-23 Thread Ghirai
On Sun, 23 Sep 2007 11:59:14 +0400 Dmitry Gorbik <[EMAIL PROTECTED]> wrote: > You can start gdb session like this: > $gdb program > break main > set disassembly-flavor intel > disassemble main > > Now you can use "nexti" to run program till break & "next" will step one > instruction (if there we

Re: gdb question

2007-09-23 Thread Dmitry Gorbik
On Sun, 23 Sep 2007 00:29:23 + Ghirai <[EMAIL PROTECTED]> wrote: > Hello list, > > I'm playing with a small nasm executable, is there any way > i can get gdb to show me the deadlisting, and allow me to > break at a certain offset, without any debugging symbols? > > Since my code is raw assem

gdb question

2007-09-22 Thread Ghirai
Hello list, I'm playing with a small nasm executable, is there any way i can get gdb to show me the deadlisting, and allow me to break at a certain offset, without any debugging symbols? Since my code is raw assembly, seeing the sourcecode file or the deadlisting is the exact same. Atm i'm doing