home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / doshelp / helpsb.zoo / help / debug / summary.hlp < prev   
Encoding:
Text File  |  1989-01-01  |  1.0 KB  |  20 lines

  1.                              DEBUG
  2.  
  3. The DEBUG external command can be used to create, edit, or display any file 
  4. on your computer. No format is assumed or needed. DEBUG is a program that can 
  5. get you into lots of trouble if carelessly used. 
  6.  
  7.     DEBUG [d:][pathname][filename[.ext]]
  8.  
  9. [d:][pathname][filename[.ext]] is the file to be edited or displayed. 
  10.     Wildcards can not be used.
  11.  
  12. DEBUG treats a file as a string of characters. Each character in a file has 
  13. an address. The addresses start at 0100. DEBUG only understands hexadecimal 
  14. (base 16) arithmetic. Anytime an address is displayed, it will be of the form 
  15. xxxx:yyyy, where yyyy is the address and xxxx: can be ignored. Lists produced
  16. by DEBUG always display sixteen characters on each line, first in hexadecimal 
  17. and then in ASCII. See the NEW_TERMS ASCII topic for a cross reference of 
  18. decimal, hexadecimal, and character equivalents. See the RD RDSTAR topic for
  19. an example of the use of the DEBUG command in a BATCH file.
  20.