home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PILOT / PC / COPILOT / DEBUGGER.HLP < prev    next >
Encoding:
Text File  |  1996-10-01  |  2.3 KB  |  57 lines

  1. Copilot Debugger Help -------------------------------------------------------
  2. d [<address>] [l<count>]   Dump memory using previous type
  3. da [<address>] [l<count>]  Dump memory ASCII
  4. db [<address>] [l<count>]  Dump memory bytes
  5. dd [<address>] [l<count>]  Dump memory double-words (longs)
  6. dw [<address>] [l<count>]  Dump memory words
  7. dh [-d] <handle>           Dump handle pointer, size (-d dumps data too)
  8. ds                         Dump active module's symbols
  9.  
  10. bc <bpid>                  Clear breakpoint
  11. bd <bpid>                  Disable breakpoint
  12. be <bpid>                  Enable breakpoint
  13. bl                         List breakpoint(s)
  14. bp [-na] [<address>]       Set breakpoint (-na breaks at next app startup)
  15.  
  16. e <address> <value> [...]  Enter using previous type
  17. ea <address> <value> [...] Enter ASCII
  18. eb <address> <value> [...] Enter bytes
  19. ed <address> <value> [...] Enter double-words
  20. ew <address> <value> [...] Enter words
  21.  
  22. g [=<address>] [<address>] Start execution and stop when address is reached
  23. *j <expr> ? "<true cmd list>" : "<false cmd list>"
  24. k                          Stack backtrace
  25. ln [<address>]             List closest symbols before and after address
  26. p [=<address>] [<count>]   Execute an instruction (won't trace into JSR, etc)
  27. r [<reg> <value>]          Dump or set registers
  28. set [<var> [<value>]]      Dump, clear, or set a variable's value
  29. t [=<address>] [<count>]   Trace an instruction
  30. u [<address>] [l<count>]   Display unassembled instructions
  31.  
  32. *zd                         Run the default command
  33. *zl                         List the default command
  34. *zs "<cmd list>"            Set the default command
  35.  
  36. n [<radix>]                Show/set default number base (radix)
  37.  
  38. ?, help                    Show this help
  39. <Enter>                    Repeat the previous command
  40.  
  41. Legend ----------------------------------------------------------------------
  42. <reg>
  43. <address>
  44. <value>
  45. <range>                    [<address>] [l<expr>]
  46. <expr>
  47. <bpid>                     <id> | '*'
  48. <cmd list>
  49. <var>
  50.  
  51. Debugger Variables ----------------------------------------------------------
  52. _NumLines (0-any):   Default number of lines dumped by 'u', 'd', etc commands
  53. _BreakCmd ("cmd"):   Command executed after step, trace, or break into
  54.                      debugger
  55. _NextDump
  56. _NextDisasm
  57.