dbx command
|
debug command
|
Description
|
Notes
|
stepi
|
step [-p proc_list] [-bfq] -i [-c count]
|
Single step as in step, but at a single machine instruction.
|
Debug has a default alias for this functionality, si.
|
nexti
|
step [-p proc_list] [-bfq] -io [-c count]
|
Single step as in next, but at a single machine instruction.
|
Debug has a default alias for this functionality. ni.
|
regs
|
regs [-p proc_list]
|
Display the contents of the register set.
|
|
fpregs
|
regs [-p proc_list]
|
Display the contents of the register set.
|
Debug display's the floating point registers only if they have been
used.
|
address, address/ [mode]
address / [count] [mode]
|
dump [-p proc_list] [-c byte_count] [-b] expression
|
Print the contents of memory
|
Debug's dump command allows starting points to be defined by expressions
as well as addresses. Debug's dump output is printed in ASCII and hexadecimal.
|