home *** CD-ROM | disk | FTP | other *** search
/ MPC Wizard 3.0 / WIZARD3_0.ISO / drivers / cdrom / ch5_535 / read.me2 < prev    next >
Text File  |  1993-03-29  |  5KB  |  167 lines

  1.                       CHINON CD-ROM DEVICE DRIVER DISK
  2.                             COMMAND LINE SWITCHES
  3.  
  4.  
  5. The information presented here is taken from the Host Adapter Card User's
  6. Manual and is intended to be a handy ready reference for the command line
  7. switches in the "DEVICE=" line within the CONFIG.SYS file: 
  8.  
  9.         DEVICE=c:\..path..\CDRVR.SYS /A:0 /D:MSCD000 /F:1 /N:1 /S:0
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. /A: switch
  26. ~~~~~~~~~~
  27. This switch specifies the Host Adapter Card's address range. The ranges are as
  28. follows:
  29.  
  30.                 A:/ switch      Range (decimal)         Range (hex)
  31.                 ~~~~~~~~~~      ~~~~~~~~~~~~~~~         ~~~~~~~~~~~
  32.                     0              768 - 783             300 - 30F
  33.                     1              784 - 799             310 - 31F
  34.                     2              800 - 815             320 - 32F
  35.                     3              816 - 831             330 - 33F
  36.                     4              832 - 847             340 - 34F
  37.                     5              848 - 863             350 - 35F
  38.                     6              864 - 879             360 - 36F
  39.                     7              880 - 895             370 - 37F
  40.                     8              896 - 911             380 - 38F
  41.                     9              912 - 927             390 - 39F
  42.                     10             928 - 943             3A0 - 3AF
  43.                     11             944 - 959             3B0 - 3BF
  44.                     12             960 - 975             3C0 - 3CF
  45.                     13             976 - 991             3D0 - 3DF
  46.                     14             992 - 1007            3E0 - 3EF
  47.                     15            1008 - 1023            3F0 - 3FF
  48.  
  49. /D: switch
  50. ~~~~~~~~~~
  51. This switch specifies the device driver name.  MSCDEX uses this name to locate
  52. and communicate with the device driver. This name can be up to 8 characters in
  53. length. There must not be a colon (":") anywhere within the name. For example:
  54.  
  55.                                 /D:MSCD001
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73. /F: switch
  74. ~~~~~~~~~~
  75. This switch specifies the method that the device driver uses to communicate
  76. with the CD-ROM drive(s). The method used determines the speed at which data
  77. is read from the drive.
  78.  
  79. Here are the four possible modes shown fastest to slowest:
  80.  
  81.                 Switch          Read Method
  82.                 ~~~~~~          ~~~~~~~~~~~
  83.                 /F:1            pseudo DMA, blind reads, 2 bytes per read
  84.                 /F:2            pseudo DMA, blind reads, 1 byte per read
  85.                 /F:3            pseudo DMA, non-blind reads
  86.                 /F:4            programmed I/O
  87.  
  88. In almost all cases you should be able to use the fastest mode. In other cases
  89. you may have to use a slower mode for one of the following reasons:
  90.  
  91.                 - You have many devices connected to the SCSI bus
  92.                 - You are using very long data cables
  93.                 - The total cable length is over 18 feet
  94.                 - The system is operating in an electrically noisy environment
  95.  
  96. Use the /F:1 mode first. If that is unsatisfactory, use a slower mode.
  97.  
  98. /N: switch
  99. ~~~~~~~~~~
  100. This switch specifies the number of CD-ROM drives connected to the Host
  101. Adapter Card. For example:
  102.  
  103.                 /N:1    one drive connected
  104.                 /N:2    two drives connected
  105.  
  106. The /N: switch must be placed before the /S: switch in the "DEVICE=" line.
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121. /S: switch
  122. ~~~~~~~~~~
  123. This switch allows you to assign the DOS drive letter to the CD-ROM drive by
  124. SCSI ID number.  If you have two or more drives connected to the Host Adapter
  125. Card, you can designate the DOS drive letter to be assigned to each drive.
  126. For example, you have two connected drives and DOS has assigned the letters
  127. D: and E: to them. You have assigned SCSI ID numbers 2 and 0 to these same
  128. drives. The /S: switch associates the SCSI ID numbers to the drive letters as
  129. follows:
  130.  
  131.                 /S:20
  132.  
  133. The drive with SCSI ID number 2 becomes the D: drive.
  134. The drive with SCSI ID number 0 becomes the E: drive.
  135.  
  136.  
  137. If you wanted the drive with SCSI ID number 0 to be the D: drive and the drive 
  138. with SCSI ID number 2 to be the E: drive:
  139.  
  140.                 /S:02
  141.  
  142. The drive with SCSI ID number 0 becomes the D: drive.
  143. The drive with SCSI ID number 2 becomes the E: drive.
  144.  
  145.  
  146. Use the same process for assigning up to seven drives. For example:
  147.  
  148.                 /S:1620435
  149.  
  150. The drive with SCSI ID number 1 becomes the D: drive.
  151. The drive with SCSI ID number 6 becomes the E: drive.
  152. The drive with SCSI ID number 2 becomes the F: drive.
  153. The drive with SCSI ID number 0 becomes the G: drive.
  154. The drive with SCSI ID number 4 becomes the H: drive.
  155. The drive with SCSI ID number 3 becomes the I: drive.
  156. The drive with SCSI ID number 5 becomes the J: drive.
  157.  
  158. Notice there are no spaces within the entire switch. 
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.