home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / README.DOC < prev    next >
Encoding:
Text File  |  1987-04-17  |  17.3 KB  |  595 lines

  1.  
  2.  
  3. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  4.  
  5.  
  6.                           C   T O O L S   P L U S
  7.  
  8.                                Version 3.02
  9.                               April 17, 1987
  10.  
  11.  
  12. This document provides information on the installation and  use  of  C  TOOLS
  13. PLUS.   It  should  be  used  as a supplement to the manual.  Please read the
  14. Introduction and "Using C TOOLS PLUS" in the manual.  If you are upgrading to 
  15. C TOOLS PLUS from C TOOLS or C TOOLS 2, please read Appendix  I  also.   Then
  16. read  this  file  for  information  specific  to  your C compiler and to this
  17. version of C TOOLS PLUS.  
  18.  
  19. If you are using C TOOLS PLUS with C VIEW MANAGER, please read the CTPCVM.DOC 
  20. file.  
  21.  
  22. At the end of this file is a list of the files supplied and the diskettes and 
  23. subdirectories where they may be found.  
  24.  
  25.                  COMPILER-SPECIFIC FILES -- FOR ALL USERS
  26.  
  27. The following table lists the specific files you should install and  use  for
  28. your  compiler  and  memory  model.   The  columns of the table are explained
  29. below.  
  30.  
  31.    Memory  C TOOLS PLUS  COMPILER.H   BIOS Video  COMPILER.MAC    DOS.MAC
  32.    Model      Library       File        Module        File          File
  33.    ------  ------------ ------------  ----------  ------------ -------------
  34.  
  35.   Lattice C versions 3.00 and later:
  36.  
  37.      S     CTP_L3S.LIB  COMPILER.L3S  BV_L3S.OBJ  COMPILER.AL3 SM8086.MAC(*)
  38.      P    (CTP_L3P.LIB) COMPILER.L3P (BV_L3P.OBJ) COMPILER.AL3 PM8086.MAC(*)
  39.      D    (CTP_L3D.LIB) COMPILER.L3D (BV_L3D.OBJ) COMPILER.AL3 DM8086.MAC(*)
  40.      L     CTP_L3L.LIB  COMPILER.L3L  BV_L3L.OBJ  COMPILER.AL3 LM8086.MAC(*)
  41.  
  42.   Microsoft C versions 3.00 and 4.00:
  43.  
  44.      S     CTP_M4S.LIB  COMPILER.M3S  BV_M4S.OBJ  COMPILER.AM3 M3S.MAC
  45.      M     CTP_M4M.LIB  COMPILER.M3M  BV_M4M.OBJ  COMPILER.AM3 M3M.MAC
  46.      C     CTP_M4C.LIB  COMPILER.M4C  BV_M4C.OBJ  COMPILER.AM3 M4C.MAC
  47.      L     CTP_M4L.LIB  COMPILER.M3L  BV_M4L.OBJ  COMPILER.AM3 M3L.MAC
  48.      H     CTP_M4L.LIB  COMPILER.M3L  BV_M4L.OBJ  COMPILER.AM3 M3L.MAC
  49.  
  50. (Note:  Files in parentheses () are not normally supplied but  are  available
  51. on  request  or  can  be  built  by  the  user.  (*) indicates files that are
  52. supplied with the compiler.) 
  53.  
  54. Memory Model:  This affects the maximum data and code size  in  your  program
  55. and  the nature of data and code pointers.  For Microsoft C, the memory model
  56. is specified via the /A compiler option; for Lattice C, via  the  -m  option.
  57. If you do not specify a memory model, the compiler assumes S model.  
  58.  
  59. Library:   These  files  are  precompiled  versions  of  all the C TOOLS PLUS
  60. functions.  To link them into your programs, specify the proper library  file
  61. on the linker command line.  
  62.  
  63.  
  64.                                   Page 1                                     
  65.  
  66.  
  67.  
  68.  
  69. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  70.  
  71.  
  72. COMPILER.H  file:   This  specifies  the  C compiler and memory model.  It is
  73. required when compiling with C TOOLS PLUS  header  (.H)  files.   Select  the
  74. correct version and copy it to COMPILER.H.  
  75.  
  76. BIOS  video  module:   The  C  TOOLS  PLUS  Generic  Video functions (GV) are
  77. supplied in two versions.  The versions in the library perform direct  access
  78. to  video  memory.  If you prefer the versions that perform all video I/O via
  79. the BIOS, link your program with the BV_???.OBJ object  module  specified  by
  80. the table.  
  81.  
  82. COMPILER.MAC  file:   This  specifies the C compiler for C TOOLS PLUS modules
  83. written in assembly language.  If you reassemble any C TOOLS  PLUS  assembler
  84. modules, first copy the correct file to COMPILER.MAC.  
  85.  
  86. DOS.MAC file:  Many C TOOLS PLUS assembly language modules include the header 
  87. file DOS.MAC.  DOS.MAC specifies the memory model and defines certain macros.  
  88. If  you reassemble any C TOOLS PLUS assembler modules, first copy the correct
  89. file to DOS.MAC.  
  90.  
  91.                A NOTE ON MICROSOFT C VERSIONS 3.00 AND 4.00
  92.  
  93. Although the table above seems to mix versions 3.00 and 4.00  inconsistently,
  94. you  may  follow  the  table with confidence.  We have found that all C TOOLS
  95. PLUS files work equally well with both versions of the Microsoft  C  compiler
  96. and libraries, no matter which version was used to compile them.  
  97.  
  98. In  your source code, you may use the symbol MSC300 to indicate both versions
  99. of Microsoft C.  
  100.  
  101.                          A NOTE ON H (HUGE) MODEL
  102.  
  103. For the H model of Microsoft C, use the CTP_M4L.LIB (L model) library.   This
  104. will  provide  reliable  support  for  most programs but not for data objects
  105. (such as arrays) exceeding 65536 bytes in size.  If you must handle such huge 
  106. objects using C TOOLS PLUS functions, use COMPILER.M3L (L model version)  for
  107. your  COMPILER.H  file,  recompile  all  C  TOOLS  PLUS modules using the /AH
  108. compiler option, and build a new library.  
  109.  
  110.              WARNING:  USE OF FLOATING POINT IN HARDWARE ISRs
  111.  
  112. Handlers for hardware interrupts may be invoked at random times, perhaps when 
  113. some other program is using the 8087 or 80287  math  coprocessor.   For  this
  114. reason hardware interrupt service routines (ISRs) must leave the state of the 
  115. 8087  unchanged.  The easiest way to do so is to select a floating point math
  116. library that does not use the 8087, as follows:  
  117.  
  118. For Lattice C version 3.00 and later, link your program with NONDP.LIB  ahead
  119. of  the  standard  C  math  library.   Use  the  version  of  NONDP.LIB  that
  120. corresponds to your memory model.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.                                   Page 2                                     
  131.  
  132.  
  133.  
  134.  
  135. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  136.  
  137.  
  138.  
  139. For Microsoft C version 3.00 or 4.00, compile  your  program  with  the  /FPa
  140. option  and  link  it  with  the  alternate math library (supplied with the C
  141. compiler).  Imitate the following example for Microsoft C version 3.00:  
  142.  
  143.    link/nod myprog,,,ctp_m4s+slibfa+slibc;         [Small model]
  144.  
  145. or the following example for version 4.00:  
  146.  
  147.    link/nod myprog,,,ctp_m4s+slibfa+slibc+libh;    [Small model]
  148.  
  149. For the Microsoft C compiler, avoid floating point arithmetic in C (Compact), 
  150. L (Large), or H  (Huge)  model  ISRs,  because  the  floating  point  library
  151. routines  assume  that  the DS and SS registers contain the same value.  This
  152. assumption is violated when an ISR is invoked because  the  ISR  is  given  a
  153. stack  of  its own.  (You may be able to use floating point arithmetic if you
  154. use static variables instead of auto variables, but  this  is  tricky.)   The
  155. same  warning applies to ISRs compiled with other variations of the /Afxx and
  156. /Ahxx mixed models.  
  157.  
  158.                             CONSTRUCTION NOTES
  159.  
  160. All Lattice C modules were compiled with version 3.10 of the  compiler  using
  161. only  the -m option, which specifies the memory model.  All assembler modules
  162. were assembled with version 3.00 of the Microsoft Macro Assembler  specifying
  163. no  options.   The  libraries  were  built with version 3.04 of the Microsoft
  164. Library Manager (LIB) specifying no options.  
  165.  
  166. All Microsoft C modules were compiled with version 4.00 of the compiler using 
  167. only the /A option (which specifies the memory model), the  /W2  option,  and
  168. the  /DLINT_ARGS  option.   All assembler modules were assembled with version
  169. 3.00 of the Microsoft Macro Assembler using only the  /mx  option  ("preserve
  170. case  in  public and external names").  The libraries were built with version
  171. 3.04 of the Microsoft Library Manager specifying no options.  
  172.  
  173. The demonstration programs FONT, SAVESCN, WNEXAMPL,  and  ZAP  were  compiled
  174. with Microsoft C, version 4.00, S model, and linked with the Microsoft linker 
  175. version 3.51 using only the /NOIGNORECASE option.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.                                   Page 3                                     
  197.  
  198.  
  199.  
  200.  
  201. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  202.  
  203.  
  204.                            CONTENTS OF DISKETTES
  205.  
  206.    Disk Filename      Description
  207.    ---- ------------  -----------------------------------------
  208.     1   README   DOC  This file
  209.     3   CHANGES  DOC  List of changes since version 3.00
  210.     5   CTPLIB   DOC  List of standard library functions, variables,
  211.                         and macros used by C TOOLS PLUS
  212.    
  213.     2   CTPCVM   DOC  Instructions for modifying C VIEW MANAGER
  214.                         for use with C TOOLS PLUS
  215.     2   CVMFIX   BAT  Batch file for modifying C VIEW MANAGER
  216.                         libraries for use with C TOOLS PLUS
  217.     3   LREMOVE       Utility files used by CVMFIX.BAT
  218.     3   MSREMOVE
  219.    
  220.     2   RUNPRINT BAT  Batch file to print source code
  221.     2   CONCAT   COM  Utility program to print source code
  222.     2   CTP      FIL  List of source files for use by CONCAT.COM
  223.    
  224.     3   CTP_L3S  LIB  Lattice C 3.10 libraries
  225.     3   CTP_L3L  LIB    (for use with Lattice C version 3.00 and later)
  226.    
  227.     1   CTP_M4S  LIB  Microsoft C 4.00 libraries
  228.     1   CTP_M4M  LIB    (for use with Microsoft C versions 3.00 and 4.00)
  229.     2   CTP_M4C  LIB
  230.     2   CTP_M4L  LIB
  231.    
  232.     1   BLAISE   H    Universal header file
  233.    
  234.                       Header files for function categories:
  235.     1   BAPPLIC  H      AP  Application functions
  236.     1   BDIRECT  H      DR  Directory maintenance
  237.     1   BFILE    H      FL  File handling
  238.     1   BGENVID  H      GV  Generic video
  239.     1   BGRAPH   H      GR  Graphics
  240.     1   BISR     H      IS  Interrupt service support
  241.     1   BKEYBD   H      KB  Keyboard support
  242.     1   BMEMORY  H      MM  Memory management
  243.     1   BPROGCTL H      PC  Program control
  244.     1   BQUERY   H      QY  DOS query function
  245.     1   BSCREEN  H      SC  Screen handling
  246.     1   BSTRING  H      ST  String handling
  247.     1   BUTILITY H      UT  Utility functions and macros
  248.     1   BVIDEO   H      VI  Direct video access
  249.     1   BWINDOW  H      WN  Window management
  250.    
  251.     1   BBIOSVID H    Version of BGENVID.H specifying BIOS video
  252.                         services
  253.    
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.                                   Page 4                                     
  263.  
  264.  
  265.  
  266.  
  267. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  268.  
  269.  
  270.     1   APPLICAT H    Replacements for header files used with
  271.     1   DOSINFO  H      C TOOLS and C TOOLS 2
  272.     1   FILEHAND H
  273.     1   GRAPH    H
  274.     1   PROGCTRL H
  275.     1   SCREEN   H
  276.     1   SUTILITY H
  277.     1   UTILITY  H
  278.    
  279.     1   BV_L3S   OBJ  Object files to force BIOS video instead of
  280.     1   BV_L3L   OBJ    direct video access
  281.     1   BV_M4S   OBJ
  282.     1   BV_M4M   OBJ
  283.     1   BV_M4C   OBJ
  284.     1   BV_M4L   OBJ
  285.    
  286.     1   COMPILER L3S  COMPILER.H header files to specify compiler and
  287.     1   COMPILER L3P    memory model
  288.     1   COMPILER L3D
  289.     1   COMPILER L3L
  290.     1   COMPILER M3S
  291.     1   COMPILER M3M
  292.     1   COMPILER M4C
  293.     1   COMPILER M3L
  294.    
  295.     3   COMPILER AL3  COMPILER.MAC header files to specify compiler
  296.     3   COMPILER AM3
  297.    
  298.     3   M3S      MAC  DOS.MAC header files to specify memory model for
  299.     3   M3M      MAC    assembler modules supporting Microsoft C
  300.     3   M4C      MAC    version 3.00 or 4.00
  301.     3   M3L      MAC
  302.    
  303.     3   FONT     C    Source files for demonstration programs FONT,
  304.     3   SAVESCN  C      SAVESCN, and ZAP
  305.     2   ZAP      C
  306.     3   FONT     EXE  Executable demonstration programs compiled with
  307.     3   SAVESCN  EXE    Microsoft C 4.00, S model
  308.     2   ZAP      EXE
  309.    
  310.     2   WNEXAMPL C    Source code for window example program from manual
  311.     2   WNEXAMPL EXE  Executable version of WNEXAMPL, compiled with
  312.                         Microsoft C 4.00, S model
  313.    
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.                                   Page 5                                     
  329.  
  330.  
  331.  
  332.  
  333. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  334.  
  335.  
  336.     5   BDSX     ASM  Source files for library functions
  337.     5   BIOS     ASM    that are written in assembly language
  338.     5   CASEMAP  ASM
  339.     5   DOS      ASM
  340.     5   ISCALINT ASM
  341.     5   ISCT2INT ASM
  342.     5   ISDISPAT ASM
  343.     5   KBPLACE  ASM
  344.     5   KBQUEUE  ASM
  345.     5   UTDEFDS  ASM
  346.     5   UTINTOFF ASM
  347.     5   UTINTON  ASM
  348.     5   UTMOVE   ASM
  349.     5   UTSREG   ASM
  350.     5   VIDIRECT ASM
  351.    
  352.     4   \C\BV       C     Source file for BV_???.OBJ object modules
  353.    
  354.     4   \C\APCOMLIN C     Source files for library functions
  355.     4   \C\APPROMPT C       that are written in C
  356.     4   \C\APQUERY  C
  357.     4   \C\APRDNUM  C
  358.     4   \C\APRDTEXT C
  359.     4   \C\APYESNO  C
  360.     4   \C\DRCHDIR  C
  361.     4   \C\DRCURDIR C
  362.     4   \C\DRDT2STP C
  363.     4   \C\DRMKDIR  C
  364.     4   \C\DRREMVOL C
  365.     4   \C\DRRENAME C
  366.     4   \C\DRRETDRV C
  367.     4   \C\DRRETSTP C
  368.     4   \C\DRRETVOL C
  369.     4   \C\DRRMDIR  C
  370.     4   \C\DRSETDRV C
  371.     4   \C\DRSETSTP C
  372.     4   \C\DRSETVOL C
  373.     4   \C\DRSFIRST C
  374.     4   \C\DRSNEXT  C
  375.     4   \C\DRSTP2DT C
  376.     4   \C\DRSTP2TM C
  377.     4   \C\DRTM2STP C
  378.     4   \C\FLCLOSE  C
  379.     4   \C\FLCREATE C
  380.     4   \C\FLDELETE C
  381.     4   \C\FLNEW    C
  382.     4   \C\FLNORM   C
  383.     4   \C\FLOPEN   C
  384.     4   \C\FLREAD   C
  385.     4   \C\FLRETATR C
  386.     4   \C\FLRETDTA C
  387.     4   \C\FLSEEK   C
  388.     4   \C\FLSETATR C
  389.     4   \C\FLSETDTA C
  390.     4   \C\FLTEMP   C
  391.     4   \C\FLWRITE  C
  392.  
  393.  
  394.                                   Page 6                                     
  395.  
  396.  
  397.  
  398.  
  399. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  400.  
  401.  
  402.     4   \C\GRAMOVE  C
  403.     4   \C\GRINIT   C
  404.     4   \C\GRLINE   C
  405.     4   \C\GRPTREAD C
  406.     4   \C\GRPTWRIT C
  407.     4   \C\GRRMOVE  C
  408.     4   \C\GVATRECT C
  409.     4   \C\GVHORIZ  C
  410.     4   \C\GVRDRECT C
  411.     4   \C\GVSCROLL C
  412.     4   \C\GVWRRECT C
  413.     4   \C\ISDETECT C
  414.     4   \C\ISINSTAL C
  415.     4   \C\ISINVINT C
  416.     4   \C\ISISRSTK C
  417.     4   \C\ISRETVEC C
  418.     4   \C\ISSETISR C
  419.     4   \C\ISSETVEC C
  420.     4   \C\KBFLUSH  C
  421.     4   \C\KBIN     C
  422.     4   \C\KBREADY  C
  423.     4   \C\KBSHIFT  C
  424.     4   \C\KBSTUFF  C
  425.     4   \C\MMALLOC  C
  426.     4   \C\MMAVAIL  C
  427.     4   \C\MMFREE   C
  428.     4   \C\MMSETBLK C
  429.     4   \C\MMSHRINK C
  430.     4   \C\MMTOTAL  C
  431.     4   \C\PCDOSCMD C
  432.     4   \C\PCENVCHK C
  433.     4   \C\PCEXEC   C
  434.     4   \C\PCEXIT   C
  435.     4   \C\PCREMOVE C
  436.     4   \C\PCRESEXT C
  437.     4   \C\PCWAIT   C
  438.     4   \C\QYCTLBRK C
  439.     4   \C\QYDISKSP C
  440.     4   \C\QYDOSVER C
  441.     4   \C\QYERROR  C
  442.     4   \C\QYGCOUN  C
  443.     4   \C\QYMODEL  C
  444.     4   \C\QYRETDAT C
  445.     4   \C\QYRETTIM C
  446.     4   \C\QYSCOUN  C
  447.     4   \C\QYSETDAT C
  448.     4   \C\QYSETTIM C
  449.     4   \C\QYVERIFY C
  450.     4   \C\SCACTPG  C
  451.     4   \C\SCAPAGE  C
  452.     4   \C\SCATRECT C
  453.     4   \C\SCATTRIB C
  454.     4   \C\SCBOX    C
  455.     4   \C\SCCHGDEV C
  456.     4   \C\SCCLEAR  C
  457.     4   \C\SCCLRMSG C
  458.  
  459.  
  460.                                   Page 7                                     
  461.  
  462.  
  463.  
  464.  
  465. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  466.  
  467.  
  468.     4   \C\SCCURPOS C
  469.     4   \C\SCCURSET C
  470.     4   \C\SCCURSOR C
  471.     4   \C\SCCURST  C
  472.     4   \C\SCDSPMSG C
  473.     4   \C\SCEQUIP  C
  474.     4   \C\SCHORIZ  C
  475.     4   \C\SCMODE   C
  476.     4   \C\SCNEWDEV C
  477.     4   \C\SCPAGE   C
  478.     4   \C\SCPAGES  C
  479.     4   \C\SCPCLR   C
  480.     4   \C\SCPGCUR  C
  481.     4   \C\SCPSCROL C
  482.     4   \C\SCRDBUF  C
  483.     4   \C\SCRDRECT C
  484.     4   \C\SCREAD   C
  485.     4   \C\SCRESET  C
  486.     4   \C\SCROWS   C
  487.     4   \C\SCSCROLL C
  488.     4   \C\SCTTYWIN C
  489.     4   \C\SCTTYWRT C
  490.     4   \C\SCWRAP   C
  491.     4   \C\SCWRBUF  C
  492.     4   \C\SCWRITE  C
  493.     5   \C\SCWRRECT C
  494.     5   \C\SCWRSTR  C
  495.     5   \C\STBFOLD  C
  496.     5   \C\STCFILL  C
  497.     5   \C\STCJULDT C
  498.     5   \C\STCLEFT  C
  499.     5   \C\STCMID   C
  500.     5   \C\STCRIGHT C
  501.     5   \C\STCSUB   C
  502.     5   \C\STPCVT   C
  503.     5   \C\STPDETAB C
  504.     5   \C\STPENTAB C
  505.     5   \C\STPFDATE C
  506.     5   \C\STPFTIME C
  507.     5   \C\STPJUST  C
  508.     5   \C\STPMONEY C
  509.     5   \C\STPWORD  C
  510.     5   \C\STPXLATE C
  511.     5   \C\STSCHIND C
  512.     5   \C\STSDATE  C
  513.     5   \C\STSINDEX C
  514.     5   \C\STSTIME  C
  515.     5   \C\STSVERFY C
  516.     5   \C\UTABORT  C
  517.     5   \C\UTABSPTR C
  518.     5   \C\UTCODPTR C
  519.     5   \C\UTGETCLK C
  520.     5   \C\UTINIT   C
  521.     5   \C\UTPAUSE  C
  522.     5   \C\UTRND    C
  523.     5   \C\UTSLEEP  C
  524.  
  525.  
  526.                                   Page 8                                     
  527.  
  528.  
  529.  
  530.  
  531. C TOOLS PLUS 3.02                                            BLAISE COMPUTING
  532.  
  533.  
  534.     5   \C\UTSLMOVE C
  535.     5   \C\UTSOUND  C
  536.     5   \C\UTSPKOFF C
  537.     5   \C\UTSPKON  C
  538.     5   \C\VIADS    C
  539.     5   \C\VIATRECT C
  540.     5   \C\VIHORIZ  C
  541.     5   \C\VIRDRECT C
  542.     5   \C\VISCROLL C
  543.     5   \C\VIWRRECT C
  544.     5   \C\WNATTR   C
  545.     5   \C\WNCOVER  C
  546.     5   \C\WNCREATE C
  547.     5   \C\WNCURMOV C
  548.     5   \C\WNCURPOS C
  549.     5   \C\WNCURSOR C
  550.     5   \C\WNDSPLAY C
  551.     5   \C\WNDSTROY C
  552.     5   \C\WNERROR  C
  553.     5   \C\WNFORGET C
  554.     5   \C\WNGETIMG C
  555.     5   \C\WNGETOPT C
  556.     5   \C\WNHIDE   C
  557.     5   \C\WNHORIZ  C
  558.     5   \C\WNMKIMG  C
  559.     5   \C\WNOVRLAP C
  560.     5   \C\WNPGADD  C
  561.     5   \C\WNPGREM  C
  562.     5   \C\WNPUTBOR C
  563.     5   \C\WNPUTIMG C
  564.     5   \C\WNQUERY  C
  565.     5   \C\WNRDBUF  C
  566.     5   \C\WNREDRAW C
  567.     5   \C\WNREMOVE C
  568.     5   \C\WNSCROLL C
  569.     5   \C\WNSELDEV C
  570.     5   \C\WNSELECT C
  571.     5   \C\WNSETOPT C
  572.     5   \C\WNUNHIDE C
  573.     5   \C\WNUPDATE C
  574.     5   \C\WNVALNOD C
  575.     5   \C\WNVALWIN C
  576.     5   \C\WNWRAP   C
  577.     5   \C\WNWRBUF  C
  578.     5   \C\WNWRTTY  C
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.                                   Page 9                                     
  593.  
  594.  
  595.