home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR16 / T2B120A.ZIP / README.1ST < prev    next >
Text File  |  1994-01-03  |  5KB  |  186 lines

  1.  
  2. Thank you for your interest or curiosity in the TXT2BIN package!
  3.  
  4. This document helps you to get TXT2BIN up and running on your
  5. computer, and includes some last-minute information.
  6.  
  7.  
  8. The sections covered in this document are:
  9.  
  10.     * If You Are Using Version 1.14 or Earlier
  11.  
  12.  
  13.     * System Requirements
  14.  
  15.     * File Checklist
  16.  
  17.     * How to Install TXT2BIN
  18.  
  19.     * What's New in This Version
  20.  
  21.  
  22. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  23.  
  24.  
  25. IF YOU WERE USING VERSION 1.14 OR EARLIER
  26. =========================================
  27.  
  28. In Version 1.14 (or earlier), you had to describe the bytes in
  29. hexadecimal representation.  That is, the radix (base) was preset
  30. to 16.
  31.  
  32. The default radix in Version 1.20 is 10 (DECIMAL).  Therefore,
  33. you will experience some errors with the text files that you
  34. created with Version 1.14 (or earlier).
  35.  
  36. To use your existing text files with Version 1.20, please add the
  37. following line to the start of your text file:
  38.  
  39.     .RADIX 16
  40.  
  41.  
  42. If your text file already starts with a number of comment lines,
  43. then add the RADIX line to the line before the first byte
  44. appears:
  45.  
  46.     ; comment
  47.         .
  48.         .
  49.         .
  50.     ; comment
  51.  
  52.         .RADIX 16
  53.  
  54.     (first line of bytes)
  55.  
  56.  
  57.  
  58. The author regrets if this recent change to TXT2BIN has caused
  59. you any inconveniences.
  60.  
  61.  
  62. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  63.  
  64.  
  65.  
  66. SYSTEM REQUIREMENTS
  67. ===================
  68.  
  69. To use TXT2BIN and its supplemental programs, you must meet the
  70. following set of criteria:
  71.  
  72.     -   IBM PC or compatible computer
  73.  
  74.     -   At least 128KB of memory
  75.  
  76.     -   At least 150KB of disk space
  77.  
  78.     -   DOS 3.0 or later
  79.  
  80.  
  81.  
  82. FILE CHECKLIST
  83. ==============
  84.  
  85. The distribution diskette or archive file contains the following
  86. list of files:
  87.  
  88.  
  89.     TXT2BIN.DOC     The documentation file for TXT2BIN
  90.     TXT2BIN.EXE     The TXT2BIN program
  91.     TXT2BIN.MSG     List of error messages from TXT2BIN
  92.  
  93.     README.1ST      Installation procedure, list of latest
  94.                     changes, and any last-minute information
  95.                     (this file)
  96.  
  97.     DEFINES.10      List of control code definitions (in
  98.                     decimal or base 10)
  99.  
  100.     DEFINES.16      List of control code definitions (in
  101.                     hexadecimal or base 16)
  102.  
  103.     EXAMPLE.ESN     Text file to reset Epson LQ-2500 printer
  104.     EXAMPLE.HPD     Text file to reset HP DeskJet printer
  105.     EXAMPLE.HPL     Text file to reset HP LaserJet printer
  106.     EXAMPLE.IBM     Text file to reset IBM Proprinter printer
  107.  
  108.  
  109.     BIN2TXT.EXE     A supplemental program that converts a binary
  110.                     file into a textual representation
  111.  
  112.     BIN2TXT.DOC     The documentation file for BIN2TXT
  113.  
  114.  
  115.  
  116. HOW TO INSTALL TXT2BIN
  117. ======================
  118.  
  119. The installation of TXT2BIN consists of the following three
  120. steps:
  121.  
  122.  
  123. 1.  Create a directory on your hard disk called \TXT2BIN.
  124.  
  125. 2.  Copy all the files from the distribution diskette (or
  126.     uncompress the files from the archive file) into the
  127.     \TXT2BIN directory that you just created in Step 1.
  128.  
  129. 3.  (Optional)
  130.  
  131.     Add the \TXT2BIN directory to the DOS path.
  132.  
  133.     In order for this change to take effect, you may need to
  134.     restart your computer.
  135.  
  136.  
  137.  
  138. WHAT'S NEW IN THIS VERSION
  139. ==========================
  140.  
  141. Version 1.20 contains the following changes:
  142.  
  143.  
  144. 1.  The support for more ASCII characters.
  145.  
  146.     TXT2BIN supports the ASCII characters within the range of 32
  147.     and 255 (decimal), inclusive, plus the horizontal tab (ASCII
  148.     9).
  149.  
  150.  
  151. 2.  Radix support.
  152.  
  153.     You can change the radix of the byte representation:
  154.  
  155.         .RADIX 16       ; Switch to hexadecimal (base 16)
  156.  
  157.         .RADIX 8        ; Switch to octal (base 8)
  158.  
  159.  
  160. 3.  Symbols.
  161.  
  162.     You can set up a name (symbol) to represent a combination of
  163.     bytes, strings and other symbols.  This allows certain values
  164.     to be more legible in your text files.
  165.  
  166.     For example, symbols can represent control codes:
  167.  
  168.         .RADIX 10               ; Set radix to Base 10 (DECIMAL)
  169.  
  170.         .DEFINE ESC 27          ; Escape character
  171.         .DEFINE LF  10          ; Linefeed character
  172.  
  173.         .DEFINE Name "J. Doe"   ; Define a constant for a name
  174.  
  175.         <ESC> "@PJL COMMENT Written by " <Name> <LF>
  176.  
  177.  
  178. 4.  Include files.
  179.  
  180.     You can include the contents of other files in the text file.
  181.  
  182.     For example,
  183.  
  184.         .INCLUDE cntlcode       ; Add control code definitions
  185.         .INCLUDE namelist       ; Add list of specific names 
  186.