home *** CD-ROM | disk | FTP | other *** search
/ Computer Installation Guide - Dragon Clan Series / CD1.iso / CDROM / HITACHI / README.DOC < prev   
Encoding:
Text File  |  1995-06-12  |  3.0 KB  |  105 lines

  1. *** Release Notes for HIT-IDE.SYS Ver.1.03 ***
  2.  
  3. 1. General
  4.  
  5.    HIT-IDE.SYS is the device driver for DOS CD-ROM Extensions that supports 
  6.    ATAPI CD-ROM drives.
  7.  
  8. 2. Command line switches of 'HIT-IDE.SYS'
  9.  
  10.    (1) SYNTAX
  11.    
  12.     DEVICE = [x:][\dir\]HIT-IDE.SYS /D:(device name) [/N:(number of drives)]
  13.          [/T:(drive type)] [/S:(base I/O address)] [/V]
  14.          
  15.    (2) Meaning of switches
  16.    
  17.        /D:(device name)         Specifies "Device Name".
  18.        
  19.        /N:(number of drives)    Specifies number of drives to be supported by
  20.                 this driver.  Value 1 to 8 are valid.
  21.                 If this switch is omitted, the driver will 
  22.                 search connected drives.
  23.        
  24.        /T:(drive type)          Specifies the first drive type to begin to 
  25.                 support.  
  26.                 Definition of drive types are as follows:
  27.                 
  28.                 /T:   base I/O address    master/slave
  29.                 ---------------------------------------------
  30.                 0     1F0h(primary port)  master
  31.                 1     1F0h(primary port)  slave 
  32.                 2     170h(2nd port)      master
  33.                 3     170h(2nd port)      slave 
  34.                 4     1E8h(3rd port)      master
  35.                 5     1E8h(3rd port)      slave 
  36.                 6     168h(4th port)      master
  37.                 7     168h(4th port)      slave 
  38.                 
  39.                 If this switch is omitted, it is the same as
  40.                 /T:0.
  41.                 
  42.        /S:(base I/O address)    Change IRQ number to the specified base I/O
  43.                 address.
  44.                 
  45.                 base I/O           IRQ No.
  46.                  address    without /S:    with /S:  
  47.                          (default)    (alternate)
  48.                 ----------------------------------------------
  49.                 170h            15              10
  50.                 1E8h            12              11
  51.                 168h            10              9
  52.                 (1F0h)          (14)            (14)
  53.     
  54.     /V                      Display installation information.
  55.     
  56.  
  57. 3. Examples of installation
  58.  
  59.     <Case 1> -- Default is automatic search for all drives connected.
  60.      
  61.         DEVICE = HIT-IDE.SYS /D:MSCD001
  62.         
  63.         -- Install all drives connected to primary, 2nd, 3rd & 4th.
  64.  
  65.     <Case 2> -- Using /N: switch to limit the maximum number of drives.
  66.  
  67.         DEVICE = HIT-IDE.SYS /D:MSCD001 /N:2
  68.         
  69.         -- Install maximum of 2 drives while auto searching.
  70.  
  71.     <Case 3> -- Using /T: switch to change the start of automatic search.
  72.  
  73.         DEVICE = HIT-IDE.SYS /D:MSCD001 /T:2
  74.         
  75.         -- Search beginning at /T:2 (2nd port and master).
  76.  
  77.     <Case 4> -- Using /N: and /T: switches together.
  78.  
  79.         DEVICE = HIT-IDE.SYS /D:MSCD001 /N:2 /T:2
  80.         
  81.         -- Search beginning at /T:2 installing maximum 2 drives.
  82.         
  83.     <Case 5> -- Using /S: switch to use alternate IRQ numbers.
  84.     
  85.         DEVICE = HIT-IDE.SYS /D:MSCD001 /S:170,168
  86.         
  87.         -- Auto search all drives using alternate IRQ numbers
  88.            for 170 (IRQ 10) and for 168 (IRQ 9).   Use default 
  89.            IRQ numbers for others (1F0 IRQ 14; 1E8 IRQ 12).
  90.         
  91.     <Case 6> -- Using all switches together.
  92.     
  93.         DEVICE = HIT-IDE.SYS /D:MSCD001 /N:1 /T:2 /S:170
  94.         
  95.         -- Install only 1 drive starting search at 2nd port master.
  96.            Use alternate IRQ of 10 for 170.
  97.         
  98.     
  99.  
  100.  
  101.  The above specifications are subject to change.
  102.  
  103.                             June 12, 1995
  104.                             Hitachi, Ltd. 
  105.