home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / doc / curley.txt < prev    next >
Encoding:
Text File  |  1988-10-24  |  1.1 KB  |  37 lines

  1. CURLEY.TXT      An 8086 disassembler written by Charles Curley.
  2.  
  3.         DISASSEM.SEQ
  4.  
  5.           A 8086 disassembler.  This disassembler is patched into
  6.         SEE, so all you have to do is type:
  7.  
  8.                 SEE <a_code_word> <enter>
  9.  
  10.           You will see a line of Assembly code.  Continuing to press
  11.         <enter> after each line shows additional instructions. Press
  12.         ESC to terminate disassembly.
  13.  
  14.           You can also disassemble from an address:
  15.  
  16.                 <addr> DISASSEM <enter>
  17.  
  18.           The disassembler displays Postfix notation ala F83.
  19.  
  20.         DIS8086.SEQ
  21.  
  22.           Donation from Bill Muench, is a modified version of
  23.         Curley's DISASSEM.SEQ above, adjusted to disassemble in
  24.         PREFIX mode.
  25.  
  26.           The disassembly can be sent to a file from either of the
  27.         above files by using PFILE to specify a printfile, then
  28.         typing:
  29.  
  30.                 PFILE EXIT.SEQ <enter>
  31.                 PRINT SEE EXIT <enter>
  32.                 PCLOSE <enter>
  33.  
  34.           To disassemble EXIT to the file EXIT.SEQ.
  35.  
  36.  
  37.