home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 14.ddi / HELP.PDU < prev    next >
Encoding:
Text File  |  1988-06-08  |  26.7 KB  |  831 lines

  1. #
  2. PDU - The ORACLE source-level symbolic Protected-mode Debugging Utility
  3.  
  4.  
  5.                        Interactive Help for Version 2.4
  6.  
  7.          To display more information on a topic, enter its name at the
  8.          prompt.   You  can  abbreviate  the  topic  with  one or more
  9.          letters, as long  as the abbreviation  is not ambiguous  with
  10.          other topics on the same  menu.  You can also go  directly to
  11.          the help screen on that topic by using the topic in the  HELP
  12.          command, such as
  13.  
  14.                 HELP EXPRESSIONS
  15.  
  16.          To leave help, press RETURN at the "Topic:" prompt.  To  back
  17.          up to the help screen on the previous topic, press return  at
  18.          the "Subtopic:" prompt.
  19. @Commands
  20. @Expressions
  21. @Source_level_debugging
  22. @Symbols
  23.  
  24. #COMMANDS
  25. =Commands
  26. Commands
  27.  
  28.  
  29.          PDU commands are entered at the ':' prompt.  Commands can  be
  30.          abbreviated  to   one  or   two  letters.    In  the  command
  31.          descriptions, the uppercase part  of the command is  required
  32.          to specify  the command  unambiguously but  the remainder  is
  33.          optional.  Optional arguments to the commands are shown  with
  34.          square brackets, and keywords are shown in uppercase.
  35.  
  36. @Assign
  37. @BAse
  38. @BP
  39. @Byte
  40. @CLS
  41. @CLOse
  42. @DB
  43. @DD
  44. @DElete_symbols
  45. @Display_memory
  46. @DW
  47. @Evaluate
  48. @Go
  49. @Help
  50. @K_nesting
  51. @Load
  52. @Mode
  53. @Nesting
  54. @POinter
  55. @Proceed
  56. @PTr
  57. @Question_mark_?
  58. @Quit
  59. @Registers
  60. @screen_flip
  61. @shell_escape
  62. @Source_step
  63. @SYmbols
  64. @Trace
  65. @Unassemble
  66. @WIndow
  67. @Window_mode
  68. @Word
  69. @$
  70. @\
  71.  
  72. #WINDOW_MODE
  73. =Window_Mode
  74. Window Mode
  75.  
  76.          In addition to the standard  line mode of operation, PDU  can
  77.          be used in "window mode".  This mode offers several  features
  78.          to make debugging easier:
  79.  
  80.             - Function keys for frequently-used commands
  81.  
  82.             - Screen flipping,  which keeps the application screen and
  83.               the debugger screen separate,  making it easier to debug
  84.               full-screen applications
  85.  
  86.             - A separate window on the debugger screen for registers
  87.  
  88.          To use screen mode, you must invoke PDU with the -w switch:
  89.  
  90.             pdu -w [other_options] [program_name]
  91.  
  92. @Function_keys
  93. @Register_window
  94. @Screen_flipping
  95.  
  96. #WINDOW_MODE REGISTER_WINDOW
  97. =Window_mode
  98. Window_mode Register_window
  99.  
  100.          When PDU is operating in window mode, it always displays  the
  101.          current register contents at the top of the screen.  The rest
  102.          of the screen is devoted to the command area, where you enter
  103.          commands just as you would in line mode.
  104.  
  105.          Since the registers  are always displayed  at the top  of the
  106.          debugger screen, PDU does not redisplay the register contents
  107.          at tracepoints and breakpoints.  Instead, it simply  displays
  108.          the next instruction to be executed.
  109.  
  110. #WINDOW_MODE FUNCTION_KEYS
  111. =Window_mode
  112. Window_mode Function_keys
  113.  
  114.          When PDU is in window mode, the following key mappings apply:
  115.  
  116.             F1  - same as DOS F1 (template editing key)
  117.             F3  - same as DOS F3 (template editing key)
  118.             F4  - show application screen
  119.             F5  - Go
  120.             F6  - same as DOS F6 (end-of-file)
  121.             F8  - Trace
  122.             F10 - Procede (skip trace) if in assembly mode
  123.                 - Source-step if in source mode
  124.  
  125. #WINDOW_MODE SCREEN_FLIPPING
  126. =Window_mode
  127. Window_mode Screen_flipping
  128.  
  129.          When PDU is  in window mode,  the application screen  is kept
  130.          separate from the debugger screen.  Whenever the  application
  131.          code  is  running,  its  screen  is  displayed;  whenever the
  132.          debugger is  in control,  the debugger  screen is  displayed.
  133.          So, any Trace, Go, Proceed, or Single-Step command will  show
  134.          the  application  screen  until  the  debugger  is in control
  135.          again.
  136.  
  137.          You  can  look  at  the  current application screen while the
  138.          debugger is active by using the \ command, or by pressing the
  139.          F4 key.  The  application screen is  displayed until you  hit
  140.          another key, which returns you to the debugger screen.
  141.  
  142. #COMMANDS \
  143. =Commands
  144. Commands \
  145.  
  146.          The \ command returns  to the application screen  when screen
  147.          flipping  has  been  enabled.   PDU  will display the current
  148.          application screen until you hit a key, which will return you
  149.          to the PDU command line.
  150.  
  151.          To enable  screen flipping,  use the  -f switch  when PDU  is
  152.          started.  When  screen flipping  is enabled,  the application
  153.          screen is saved whenever the PDU command line is active,  and
  154.          is restored any time the application is running.  This allows
  155.          you to debug full-screen applications more easily.
  156.  
  157. #COMMANDS SCREEN_FLIP
  158. =Commands
  159. Commands screen_flip
  160.  
  161.          The \ command  is used to  flip between the  debugger and the
  162.          application screen.  See the \ command for more information.
  163.  
  164. #COMMANDS QUESTION_MARK_?
  165. =Commands
  166. Commands ?
  167.  
  168.  
  169.          The ? command  has two functions:  it operates like  the Help
  170.          command if  you don't  give it  an argument,  and it operates
  171.          like the Evaluate command if you do.
  172.  
  173. #COMMANDS $
  174. =Commands
  175. Commands $
  176.  
  177.  
  178.          The  $  command  allows  you  to  issue  a  DOS  command   or
  179.          temporarily suspend PDU to use the command processor.
  180.  
  181.          To execute a DOS command: $<command>
  182.  
  183.          When the command has completed, control returns to PDU.   All
  184.          DOS commands  are available,  although care  should be  taken
  185.          when using  commands which  will run  or affect  a program in
  186.          protected mode.   Specifically, it  is unwise  to remove  the
  187.          PME, to prem PDU, or to start another copy of PDU.
  188.  
  189.          To start a DOS subshell: $
  190.  
  191.          The same  warnings apply  to commands  executed within  a DOS
  192.          subshell.  When  you wish  to return  to PDU,  issue the EXIT
  193.          command to the DOS shell.
  194.  
  195. #COMMANDS WORD
  196. =Commands
  197. Commands Word
  198.  
  199.  
  200.          The Word comand displays memory in 16-bit words.
  201.  
  202.          Format: Word [address [Length <length>]]
  203.  
  204. #COMMANDS WINDOW
  205. =Commands
  206. Commands WIndow
  207.  
  208.  
  209.          The WIndow command allows you  to specify a list of  commands
  210.          that should be executed each time your program is interrupted
  211.          by a breakpoint.  Normally,  a Register command is  executed,
  212.          showing you the  contents of the  CPU registers and  the next
  213.          instruction  to  be  executed.   However,  it is occasionally
  214.          useful to display something else.
  215.  
  216.          To create a window macro: WIndow
  217.  
  218.          After typing the  WIndow command, PDU  will prompt you  for a
  219.          list of commands.  You  should enter any number  of commands,
  220.          one per line (just as you would enter to PDU directly)  which
  221.          are to be  executed at each  breakpoint.  Enter a  blank line
  222.          when done.
  223.  
  224.          To delete the window macro: WIndow Close
  225.  
  226. #COMMANDS UNASSEMBLE
  227. =Commands
  228. Commands Unassemble
  229.  
  230.  
  231.          The Unassemble command displays object code.
  232.  
  233.          Format: U [address [Length <length>]]
  234.  
  235.          Symbols and source lines,  if available, are displayed  along
  236.          with the object  code.  Note that  if you have  issued a MODE
  237.          SOURCE command, only the source lines will be displayed.
  238.  
  239. #COMMANDS TRACE
  240. =Commands
  241. Commands Trace
  242.  
  243.  
  244.          The Trace command  executes one machine-language  instruction
  245.          from your program.   This allows you  to examine the  flow of
  246.          your program  in fine  detail.  The  instruction at  CS:IP is
  247.          executed, and control is returned to the PDU command line.
  248.  
  249.          Format: T
  250.  
  251. #COMMANDS SYMBOLS
  252. =Commands
  253. Commands Symbols
  254.  
  255.  
  256.          The  SYmbols  command  lists  the  symbols  from  your source
  257.          program along with their addresses.
  258.  
  259.          Format: SYmbols [symbol]
  260.  
  261.          If you  don't specify  a symbol  to examine,  all symbols are
  262.          listed.  The symbol you specify may contain the wildcards '*'
  263.          and '?'.  '*' matches  zero or  more characters  of a  symbol
  264.          name, and '?'  matches exactly one  character (but will  also
  265.          match the  null character,  so ABC?  matches ABC  as well  as
  266.          ABCD).  Any number of wildcards of either type may be used in
  267.          the symbol specification.
  268.  
  269. #COMMANDS SOURCE_STEP
  270. =Commands
  271. Commands Source_step
  272.  
  273.  
  274.          The Source-step command executes your program one source line
  275.          at a time.   It is the  source-level equivalent of  the Trace
  276.          command.
  277.  
  278.          Format: Source-step
  279.  
  280.          To  use  the  Source-step  command,  the  CS:IP value must be
  281.          inside code for which your symbol file contains line numbers,
  282.          and the module must be assigned.
  283.  
  284.          If the  line contains  calls to  subroutines, the Source-step
  285.          command traces over those calls.   You must use the Trace  or
  286.          Go command if you want to trace into subroutine calls.
  287.  
  288.          Except for lines containing RET (return) instructions,  CS:IP
  289.          will  normally  point  to  another  source line from the same
  290.          module after a Source-step command.
  291.  
  292. #COMMANDS SHELL_ESCAPE
  293. =Commands
  294. Commands shell_escape
  295.  
  296.          The $ command is used to invoke an operating system subshell.
  297.          See the $ command for more information.
  298.  
  299. #COMMANDS REGISTERS
  300. =Commands
  301. Commands Registers
  302.  
  303.  
  304.          The Registers  command allows  you to  display or  change the
  305.          contents of the CPU registers.
  306.  
  307.          To display all registers: Register
  308.  
  309.          To  modify  the  contents  of  a  register:  Register   <reg>
  310.          [=<value>]
  311.  
  312.          The <reg> must be AX, BX, CX, DX, SI, DI, BP, SP, CS, DS, ES,
  313.          SS,  or  FLAGS.   If  you  do  not  provide a value, PDU will
  314.          display the current  value and prompt  you for a  new one; if
  315.          you do not enter a value at the prompt, the register will  be
  316.          left unchanged.
  317.  
  318. #COMMANDS QUIT
  319. =Commands
  320. Commands Quit
  321.  
  322.  
  323.          The Quit command terminates the debugging session, optionally
  324.          leaving PDU resident in memory.
  325.  
  326.          Format: Quit [Resident]
  327.  
  328.          If you do  not specify Resident,  PDU is removed  from memory
  329.          along with the program you are debugging (if any).
  330.  
  331.          If  you  are  debugging  resident  software,  it is sometimes
  332.          advantageous to leave PDU resident, so that it can  intercept
  333.          access violations in the  resident software you are  testing.
  334.          It  is  much  easier  to  interpret  the conditions of access
  335.          violations  when  you  can  investigate  register  and memory
  336.          contents at the time of the exception.
  337.  
  338. #COMMANDS PTR
  339. =Commands
  340. Commands PTr
  341.  
  342.  
  343.          The PTr command displays memory as 32-bit pointers.
  344.  
  345.          Format: PTr [address [Length <length>]]
  346.  
  347. #COMMANDS POINTER
  348. =Commands
  349. Commands POinter
  350.  
  351.  
  352.          The POinter command is the same as the PTr comand.
  353.  
  354. #COMMANDS NESTING
  355. =Commands
  356. Commands Nesting
  357.  
  358.  
  359.          The Nesting command is the same as the K command.
  360.  
  361. #COMMANDS MODE
  362. =Commands
  363. Commands Mode
  364.  
  365.  
  366.          The Mode command allows you to turn assembly language listing
  367.          on and off when you are debugging a program at source level.
  368.  
  369.          To mix assembler and source listings: Mode Assembler To  list
  370.          only the source code: Mode Source
  371.  
  372.          Note that you can list  only assember code simply by  closing
  373.          (or not assigning)  a module to  the code you  are debugging.
  374.          Note also that if you  are in Source-only mode, and  the code
  375.          pointer  moves  to  an  unassigned  module,  there will be no
  376.          display of code at all.  You will have to reenable  assembler
  377.          display using the Mode Assembler command in such a case.
  378.  
  379.          Typing the  Mode command  without an  argument shows  you the
  380.          current mode.
  381.  
  382. #COMMANDS LOAD
  383. =Commands Load
  384. Commands Load
  385.  
  386.  
  387.          The Load command is used to load a program or symbols for the
  388.          current program.
  389.  
  390. @Program_loading
  391. @Symbol_loading
  392.  
  393. #COMMANDS LOAD SYMBOL_LOADING
  394. =Commands Load
  395. Commands Load Symbol_loading
  396.  
  397.  
  398.          To load symbols: Load Symbols <mapfile>
  399.  
  400.          You normally only  need to use  this command if  your mapfile
  401.          has  a  different  name  than  your  program  file  or if its
  402.          extension is not .MAP.
  403.  
  404.          If you  do not  specify an  extension with  the Load  Symbols
  405.          comand, .MAP is assumed.
  406.  
  407. #COMMANDS LOAD PROGRAM_LOADING
  408. =Commands Load
  409. Commands Load Program_loading
  410.  
  411.  
  412.          To load a program: Load <program> [commandline]
  413.  
  414.          The specified  program is  loaded.  If  you have  specified a
  415.          commandline, it is  passed to your  program as though  it had
  416.          been the rest of the DOS command which loaded your program.
  417.  
  418.          After  your  program  is  loaded,  PDU  will  attempt to load
  419.          symbols  for  the  program  using  a  file with the same name
  420.          drive, path, and  filename as your  program, but with  a .MAP
  421.          extension.
  422.  
  423.          Once your program has been loaded, the first instruction will
  424.          be  displayed  and  the  registers  will  have  their  normal
  425.          entry-condition values.
  426.  
  427.          NOTE:  Do  not  specify   PLOAD  in  the  Load   command;  it
  428.          automatically loads your program into protected mode for you.
  429.          Also note that you cannot run a real-mode (.EXE) file in this
  430.          manner.   PDU  only   allows  you  to   debug  protected-mode
  431.          programs.
  432.  
  433.  
  434. #COMMANDS K_NESTING
  435. =Commands
  436. Commands K_nesting
  437.  
  438.  
  439.          The  K  command  provides  a  stack traceback showing you the
  440.          history  of  CALLs  within  your  program.   It shows you the
  441.          current  CS:IP  location  at  the  top  of the list, then the
  442.          location  which  called  the  current  subroutine,  then  the
  443.          location which  called that,  back to  the beginning  of your
  444.          program.
  445.  
  446.          Format: K
  447.  
  448.          Note that the stack traceback assumes that a C-style function
  449.          prologue is used (that is, BP is pushed, then set to point to
  450.          the pushed value of BP).  If  you are in a subroutine with  a
  451.          non-standard prologue,  or if  the first  few instructions of
  452.          the subroutine haven't been  executed yet, the traceback  may
  453.          miss some levels of nesting.
  454.  
  455. #COMMANDS HELP
  456. =Commands
  457. Commands Help
  458.  
  459.  
  460.          Use the Help command to display information on using PDU.
  461.  
  462. #COMMANDS GO
  463. =Commands
  464. Commands Go
  465.  
  466.  
  467.          The Go command begins or continues execution of your  program
  468.          from the current value of CS:IP until a breakpoint is hit  or
  469.          your program terminates.  You  can optionally specify a  list
  470.          of temporary breakpoints using the Go command.
  471.  
  472.          Syntax: Go [address [, address [...]]
  473.  
  474.          If  present,  the  list  of  addresses  (separated by commas)
  475.          specifies locations at which temporary breakpoints should  be
  476.          set.  Temporary breakpoints differ from ordinary  breakpoints
  477.          set using the  BP command in  that all temporary  breakpoints
  478.          are only in effect during this Go command.  They are  removed
  479.          when any breakpoint, temporary or ordinary, is hit.
  480.  
  481. #COMMANDS EVALUATE
  482. =Commands
  483. Commands Evaluate
  484.  
  485.  
  486.          The  Evaluate  command  prints  the  result  of evaluating an
  487.          expression.
  488.  
  489.          Format: Evaluate <expression>
  490.  
  491.          For example: e _main+30t*8
  492.  
  493. #COMMANDS DW
  494. =Commands
  495. Commands DW
  496.  
  497.  
  498.          The DW command displays memory as 16-bit words.
  499.  
  500.          Format: DW [address [Length <length>]]
  501.  
  502. #COMMANDS DELETE_SYMBOLS
  503. =Commands
  504. Commands DElete_symbols
  505.  
  506.  
  507.          The  DElete  command  drops   all  symbol  and  line   number
  508.          information.
  509.  
  510.          Format: DElete
  511.  
  512. #COMMANDS DD
  513. =Commands
  514. Commands DD
  515.  
  516.  
  517.          The DD command displays memory as double-words (pointers).
  518.  
  519.          Format: DD [address [Length <length>]]
  520.  
  521. #COMMANDS DB
  522. =Commands
  523. Commands DB
  524.  
  525.  
  526.          The DB command displays memory as bytes.
  527.  
  528.          Format: DB [address [Length <address>]]
  529.  
  530. #COMMANDS DISPLAY_MEMORY
  531. =Commands
  532. Commands Display_memory
  533.  
  534.  
  535.          The D (display memory) command displays memory in the current
  536.          format.  The  format of  the most  recent display  command is
  537.          used.  If you  haven't used a  display command yet,  the byte
  538.          format is used.
  539.  
  540.          Syntax: D [address] [Length <length>]
  541.  
  542. #COMMANDS CLOSE
  543. =Commands
  544. Commands CLOse
  545.  
  546.          Note:  PDU will automatically close modules as needed.  This
  547.          command is provided  so  that you can explicitly disable the
  548.          display of source lines for certain modules.
  549.  
  550.          The CLOse command reverses the effect of the Assign  command,
  551.          disabling source line display for a module.
  552.  
  553.          Syntax: CLOse <module>
  554.  
  555.          The CLOse command can be used if you do not want source lines
  556.          for the current module.   After  a  close, source will not be
  557.          displayed until you use Assign to re-open the module.
  558.  
  559.          Note that the  effect  of  the  CLOse  command is achieved by
  560.          hitting the RETURN key when PDU asks you the name of a source
  561.          file it is attempting to automatically open.   If you respond
  562.          to the question with  just  the RETURN key,  PDU will not try
  563.          to open that module again until  you use an Assign command on
  564.          the module.
  565.  
  566. #COMMANDS BYTE
  567. =Commands
  568. Commands Byte
  569.  
  570.  
  571.          The Byte command displays memory in bytes.
  572.  
  573.          The syntax is: Byte [address [Length <length>]]
  574.  
  575. #COMMANDS CLS
  576. =Commands
  577. Commands CLS
  578.  
  579.  
  580.          The CLS command clears the screen.
  581.  
  582. #COMMANDS BP
  583. =Commands BP
  584. Commands BP
  585.  
  586.  
  587.          The BP  command sets,  removes, and  displays breakpoints  in
  588.          your program.
  589.  
  590. @Listing_breakpoints
  591. @Removing_breakpoints
  592. @Setting_breakpoints
  593.  
  594. #COMMANDS BP LISTING_BREAKPOINTS
  595. =Commands BP
  596. Commands BP Listing_breakpoints
  597.  
  598.  
  599.          To list breakpoints, enter BP without arguments.  The address
  600.          of each breakpoint is displayed.
  601.  
  602. #COMMANDS BP REMOVING_BREAKPOINTS
  603. =Commands BP
  604. Commands BP Removing_breakpoints
  605.  
  606.  
  607.          To remove a breakpoint,  use BP -bpnumber, where  bpnumber is
  608.          the number of the  breakpoint you wish to  remove.  (Whenever
  609.          you set  a breakpoint,  PDU will  tell you  the number it has
  610.          assigned to the  breakpoint.  You must  use this number  when
  611.          referring  to  the   breakpoint  thereafter.   If   you  have
  612.          forgotten a breakpoint number, just list the breakpoints, and
  613.          PDU will show you each breakpoint's number and address.)
  614.  
  615.          To remove all breakpoints, use the BP * command.
  616.  
  617.          Examples: remove breakpoint 3: bp -3
  618.  
  619.          remove all breakpoints: bp *
  620.  
  621. #COMMANDS BP SETTING_BREAKPOINTS
  622. =Commands BP
  623. Commands BP Setting Breakpoints
  624.  
  625.  
  626.          To set a breakpoint, use BP <address>, where <address> is the
  627.          location at  which you  wish to  set a  breakpoint.  You  can
  628.          specify more  than one  address by  separating the  addresses
  629.          with commas.  For example, to set breakpoints at _main and at
  630.          _hello, you would type:
  631.  
  632.              bp _main, _hello
  633.  
  634.          PDU will display  the number it  assigns to each  breakpoint.
  635.          There is an upper limit on the number of breakpoints; if  you
  636.          exceed this  limit, PDU  will not  allow you  to set any more
  637.          breakpoints until you remove some.  Also, PDU will not  allow
  638.          you to set a breakpoint in an invalid segment.
  639.  
  640. #COMMANDS BASE
  641. =Commands
  642. Commands Base
  643.  
  644.  
  645.          The BAse  command sets  the default  base for  numeric entry.
  646.          You may set  the default base  to binary, octal,  decimal, or
  647.          hexadecimal.
  648.  
  649.          Syntax: BAse [base]
  650.  
  651.          Where base is:
  652.             'b', 'y', or '2' for binary;
  653.             'o', 'q', or  '8' for octal;
  654.             'd', 't', or  '10' for decimal;
  655.             'h', 'x',  or '16' for hexadecimal.
  656.  
  657.          If you don't provide a new base, PDU will display the current
  658.          default base.   The default  when you  start the  debugger is
  659.          hexadecimal.
  660.  
  661.          Note  that  the  BAse  command  does  not affect the radix of
  662.          numbers displayed by PDU.
  663.  
  664. #COMMANDS ASSIGN
  665. =Commands
  666. Commands Assign
  667.  
  668.          Note:  the Assign command is needed only if you have CLOsed a
  669.          module, or if you didn't supply a filename when PDU asked you
  670.          the name of a source file it was looking for.
  671.  
  672.          The Assign comand  associates a source  program file with  an
  673.          object module, allowing you to view source code  interspersed
  674.          with the object code it produced.
  675.  
  676.          The syntax is: Assign [module sourcefile]
  677.  
  678.          For example: assign test c:\user\test.c
  679.  
  680.          The   example   assigns    the   C   program    source   file
  681.          "c:\user\test.c"   to   the   object   module   named "test".
  682.          Subsequently, whenever you  unassemble code belonging  to the
  683.          module  "test",  PDU  will  display  the  source  code  which
  684.          corresponds to the object code being displayed.
  685.  
  686.          If you  type the  Assign command  without arguments,  all the
  687.          currently open modules are listed.
  688.  
  689.          PDU will automatically assign modules for you as needed.  You
  690.          may choose  to  disable  source  line  display  with  a CLOse
  691.          command, however,  and you can also disable it by hitting the
  692.          RETURN key if PDU asks you for the file name of a source file
  693.          it is attempting to open automatically.   The  Assign command
  694.          can be used to re-open a module in these cases.
  695.  
  696. #EXPRESSIONS
  697. =Expressions
  698. Expressions
  699.  
  700.  
  701.          PDU will  accept an  algebraic expression  almost anywhere it
  702.          requires a number.  In an expression, you can mix numbers  of
  703.          various bases, registers, symbols and line numbers from  your
  704.          program using arithmetic operators.
  705.  
  706.          To use  a symbol  from your  program, just  enter its name in
  707.          place  of  a  number.   The  full SEGMENT:OFFSET value of the
  708.          symbol is used.  To use  a line number, you must  specify the
  709.          module and the line number within the module; for example, to
  710.          specify the 100th line of module TEST, you would enter
  711.  
  712.             test#100
  713. @Examples
  714. @Operators
  715.  
  716. #EXPRESSIONS OPERATORS
  717. =Expressions
  718. Expressions Operators
  719.  
  720.  
  721.          PDU recognizes the following operators in an expression:
  722.  
  723.             +       addition
  724.             -       subtraction/unary negation
  725.             *       multiplication
  726.             /       integer division
  727.             >       bit-shift right (x > y is x shifted right y times)
  728.             <       bit-shift left
  729.             &       bitwise AND operation
  730.             |       bitwise OR operation
  731.             ^       bitwise XOR operation
  732.             ~       bitwise NOT operation
  733.  
  734.          The normal precedence rules  of C apply to  these operations,
  735.          but you can use parentheses to override.
  736.  
  737. #EXPRESSIONS EXAMPLES
  738. =Expressions
  739. Expressions Examples
  740.  
  741.  
  742.          To unassemble instructions starting at _main:
  743.  
  744.             u _main
  745.  
  746.          To  unassemble  instructions  starting  at  line 20 in module
  747.          test:
  748.  
  749.             u test#20
  750.  
  751.          To look at  bytes of memory  starting 30 bytes  into the area
  752.          starting at _buffer:
  753.  
  754.             db _buffer+30t
  755.  
  756.          (Note that the 't' after the '30' makes it a decimal  number,
  757.          regardless of the default base for numeric entry.)
  758.  
  759.          To look at pointers starting 20 (hex) bytes after ES:SI:
  760.  
  761.             dd es:si+20h
  762.  
  763.          To look at bytes in the  15th (decimal) entry in an array  of
  764.          data structures,  each of  which being  22 (hex)  bytes long,
  765.          based at _struc1 in the data segment, you would type:
  766.  
  767.             db ds:_struc1+15t*22h
  768.  
  769.          Note that  you can  mix numeric  bases freely  in this manner
  770.          regardless  of  the  default   base.   Also  note  that   the
  771.          multiplication is  carried out  before the  addition, so  the
  772.          expression is evaluated correctly.
  773.  
  774. #SYMBOLS
  775. =
  776. Symbols
  777.  
  778.  
  779.          PDU  will  attempt  to  read  symbols  from  the  .MAP   file
  780.          corresponding to your program  when the .PXE file  is loaded.
  781.          To create a .MAP file which PDU can use to find your  program
  782.          symbols, you  should use  the MS-DOS  linker and  specify the
  783.          /MAP option.  The .MAP file should have the same name as  the
  784.          .PXE file.  If it  doesn't, you must explicitly  load symbols
  785.          after the program is loaded using the LOAD SYMBOLS command.
  786.  
  787.          Once  symbols  have  been  loaded,  PDU will display symbolic
  788.          labels during object code unassembly, and you can use  symbol
  789.          names in place  of the addresses  they represent.  You  use a
  790.          symbol by simply using its name in an expression.
  791.  
  792. #SOURCE_LEVEL_DEBUGGING
  793. =
  794. Source_level_debugging
  795.  
  796.  
  797.          PDU will attempt to read line numbers from the .MAP file when
  798.          it loads your program.  You should create the .MAP file using
  799.          the MS-DOS linker and specify the /LINE option.  See the help
  800.          screen for Symbols for more information on the .MAP file.
  801.  
  802.          Once lines are  loaded, you can  use line numbers  anywhere a
  803.          number  or  symbol  could  be  used.   To specify line 120 in
  804.          module test, you would use:
  805.  
  806.             test#120
  807.  
  808.          (Note that line numbers  are always entered and  displayed in
  809.          decimal, regardless of the default numeric base.)
  810.  
  811.          When you are debugging in a module with line numbers, you can
  812.          use  the  Source-step  command  in  conjunction with the Mode
  813.          Source command to debug your program at source level, without
  814.          having  to  pay  attention  to  the  machine-language program
  815.          running underneath.
  816.  
  817.          PDU might occasionally ask you for the name of a source file.
  818.          It will do this only  when  it  can't find the file in one of
  819.          the directories that a previous source file was  in,  or when
  820.          the file has an  extension  that no previous source file had.
  821.          If you just press ENTER, without a filename, PDU will not try
  822.          to open a source file for the module.  You can later tell PDU
  823.          the name of the source file  for  the module using the ASSIGN
  824.          command.
  825.  
  826.          If  you  want  to  tell  PDU  not  to show source lines for a
  827.          module, use  the CLOSE  command.  Use  ASSIGN to  reverse the
  828.          effect of a CLOSE.
  829.  
  830. #nichts
  831.