home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT098.ZIP / ANSIKEY2.ZIP / ZANSI.DOC < prev    next >
Text File  |  1986-11-29  |  3KB  |  82 lines

  1.  
  2.  
  3.                               **********************
  4.                               *----- ZANSI 1.0 ----*
  5.                               **********************
  6.  
  7.  
  8.                                 Thomas Hanlin III
  9.                               6812 Sydenstricker Rd
  10.                               Springfield, VA 22152
  11.  
  12.  
  13.  
  14.      ZANSI copyright (C) 1986, Thomas Hanlin III.  Refer any problems to me
  15. at the above address.
  16.  
  17.      This is the Zephyr ANSI driver, based on Daniel Kegel's excellent ANSI
  18. driver, NANSI (version 2.2).  ZANSI is faster than NANSI and takes up less
  19. memory and disk space.  However, ZANSI is slightly less powerful, as it is
  20. missing the nonstandard character translation handler provided with NANSI.
  21.  
  22.      Distribution policy follows Mr. Kegel's rules: ZANSI may be distributed
  23. for educational and personal use only.  Commercial use is forbidden.  If you
  24. need such a product for commercial applications, please contact Mr. Kegel
  25. about his program, NANSI.  He may be contacted at the following address:
  26. Daniel Kegel, 2648 169th Ave SE, Bellevue, WA 98008.
  27.  
  28.      ZANSI replaces whatever ANSI driver you currently have installed (if
  29. any).  To use it, you should copy ZANSI.SYS to the root directory of the
  30. disk(s) you use to boot up (start) your computer.  You must also have the
  31. following line in the file CONFIG.SYS in the root directory of your boot
  32. disk: DEVICE=ZANSI.SYS
  33.  
  34.      If you have DEVICE=ANSI.SYS or DEVICE=NANSI.SYS, you must remove it
  35. before the DEVICE=ZANSI.SYS line.
  36.  
  37.      If this isn't clear to you, please consult your DOS manual.
  38.  
  39.  
  40.  
  41. ------------------------------------------------------------------------------
  42.  
  43.  
  44.  
  45. Print speed comparisons, with normal text:
  46.  
  47.  
  48.      ANSI  is   8.3%  faster than no device driver.
  49.  
  50.      NANSI is  22.6%  faster than no device driver,
  51.            or  15.6%  faster than ANSI.
  52.  
  53.      ZANSI is  27.5%  faster than no device driver,
  54.            or  20.9%  faster than ANSI,
  55.            or   6.3%  faster than NANSI.
  56.  
  57.  
  58. Memory requirement comparisons:
  59.  
  60.   No driver:     0  bytes
  61.   ANSI     :  1536  bytes
  62.   NANSI    :  3200  bytes
  63.   ZANSI    :  2816  bytes
  64.  
  65.  
  66.  
  67. ------------------------------------------------------------------------------
  68.  
  69.  
  70.  
  71.      Assembly language programmers:  The source code to ZANSI is included.
  72. To create a working copy of ZANSI.SYS, you need to do the following:
  73.  
  74.  MASM ZANSI;
  75.  MASM ZANSI_P;
  76.  MASM ZANSI_F;
  77.  MASM ZANSI_I;
  78.  LINK ZANSI+ZANSI_P+ZANSI_F+ZANSI_I;
  79.  EXE2BIN NANSI NANSI.SYS
  80.  
  81.      You can ignore the "no stack" warning error produced by LINK.
  82.