Try Documentalist,
my app that offers fast, offline access to 190+ programmer API docs.
Basics:
gdb —args foo.exe rest args
br function
: set a breakpointdelete function
: delete a breakpoint. No argument ⇒ delete allr
: runc
: continue runningbt
: show backtracestep
: executes next line, goes into functionsstepi
: executes next assembly instruction, goes into functionsnext
,nexti
: like step, but skips over functionsset disassemble-next-line on
: show disassembly when steppinginfo threads
: print info about threadsinfo reg
: print info about registers print a registerp $xmm0
print a registerp/x $rcx
: print register in hexx/4 <addr>
: display memory 4 words at a given<addr>
set {int}0xaddr = 4
: write to memory
Links: