home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t109 / 1.ddi / !UTL_UNI.LZH / README.WIN < prev    next >
Encoding:
Text File  |  1993-01-12  |  1.6 KB  |  49 lines

  1. USING MICROSOFT WINDOWS IN PROTECTED MODE
  2. =========================================
  3.  
  4.  To run the CorelSCSI device driver under Windows 3.0 in protected
  5.  mode, you must
  6.  
  7. 1. Add the following line to your CONFIG.SYS file:
  8.  
  9.          STACKS=9,256
  10.  
  11. 2. Add the following line to the SYSTEM.INI file in the [386Enh]
  12.    section to prevent Windows from using the memory space used 
  13.    by the SCSI card:
  14.  
  15.          EmmExclude=<SCSI card address>
  16.  
  17.    where <SCSI card address> represents the address range used
  18.    by the SCSI card. For example, if you're using a host adapter
  19.    that uses 16K of RAM starting at address d800, you would
  20.    enter:
  21.  
  22.          EmmExclude=d800-dbff
  23.  
  24.    For more information about the EmmExclude statement, see your 
  25.    Windows SYSINI.TXT README file.
  26.  
  27. 3. In the CONFIG.SYS file, exclude the SCSI card address from any
  28.    memory managers you're using. This prevents address conflicts
  29.    between the memory manager and the SCSI card.
  30.  
  31.    For example, if you're using the QEMM memory manager and
  32.    a SCSI card that covers the address range from d800 to dbff,
  33.    you would specify the following in your CONFIG.SYS file:
  34.  
  35.          DEVICE=C:\QEMM\QEMM386.SYS x=d800-dbff
  36.  
  37.    If you're using the EMM386 memory manager and
  38.    a SCSI card that covers the address range from d800 to dbff,
  39.    you would specify the following in your CONFIG.SYS file:
  40.  
  41.          DEVICE=C:\EMM386\EMM386.SYS x=d800-dbff
  42.  
  43.    If you're using the 386MAX memory manager and
  44.    a SCSI card that covers the address range from d800 to dbff,
  45.    you would specify the following in your CONFIG.SYS file:
  46.  
  47.          DEVICE=C:\386MAX\386MAX.SYS RAM=d800-dc00
  48.  
  49.