home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / MISC / CDROM.ZIP / HITAC102.ZIP / README.DOC < prev   
Encoding:
Text File  |  1987-07-18  |  3.5 KB  |  81 lines

  1. ***** Hitachi CD-ROM device driver for MS-DOS CD ROM Extensions *****
  2.  
  3. This document contains information related to "Hitachi CD-ROM device driver".
  4.  
  5. 1. INSTALL
  6.         To install your CD-ROM drive for use with MS-DOS, you need that you
  7.         register the "Hitachi CD-ROM device driver" (File name : HITACHI.SYS)
  8.         on your "CONFIG.SYS" file.
  9.  
  10.         In "CONFIG.SYS" file, you need to set entries for the device drivers.
  11.         The entry will read:
  12.  
  13.        DEVICE = <driver.sys> /D:<device name> /N:<number> /P:<address>
  14.  
  15.         The name of the device driver, <driver.sys>, will be replaced by a
  16.         full path name of the device driver that is being installed.  This
  17.         will include the driver letter ( A:, B:, C:  ....  etc. ) of the
  18.         bootable drive followed by the pathname of the device driver if the
  19.         device driver was installed in a subdirectory.    If the above
  20.         directions were followed, then the device driver will be located in
  21.         the root directory.  For example, on a hard disk system that boots
  22.         off drive C, a sample entry might read:
  23.  
  24.            DEVICE = C:\HITACHI.SYS /D:CDROM1 /N:1
  25.  
  26.         The next parameter /D:<device name> is the name that MSCDEX will use
  27.         to find the device driver.  When the device driver is installed,
  28.         this name what will be used by the device driver to name itself.
  29.         Every installed device driver must have a unique name.  In addition,
  30.         due to the way that MS-DOS handles file opening, if there is a
  31.         device driver with the same name as a file in a directory, then a
  32.         file open call on that name will open a handle to the device driver
  33.         and not to the file.  For this reason, you will want to choose a
  34.         <device name> that will not likely be chosen as a file name letter.
  35.  
  36.  
  37.         The next parameter /N:<number> specifies the number of CD-ROM drives
  38.         that you want to use and is connected to a controller card.  As the
  39.         device driver "HITACHI.SYS" supports a maximum of 4 drives, the range
  40.         of <number> must be from 1 to 4.
  41.  
  42.  
  43.         The last parameter /P:<address> specifies the address of the
  44.         controller card that you want to use.  This parameter is optional.
  45.         The range <address> must be 200, 220, 240, 260, 300, 320, 340 or 360.
  46.         If this parameter is omitted or has an invalid value, the device
  47.         driver will use the value 300 as the address of controller card.  In
  48.         addition, if you choose other than 300 for this switch, you need the
  49.         address changeable controller card.
  50.  
  51.         For example, on a hard disk system that boots off drive C and use
  52.         two CD-ROM drives, the device driver is located in C:,
  53.  
  54.        DEVICE = C:\HITACHI.SYS D:MSCD001 /N:2 /P:300
  55.  
  56.         If you use more than 4 drives, you need two controller cards whose
  57.         addresses are different from each other and you register them in the
  58.         "CONFIG.SYS" file.  For example, to use 6 drives,
  59.  
  60.        DEVICE = C:\HITACHI.SYS /D:MSCD001 /N:4
  61.        DEVICE = C:\HITACHI.SYS /D:MSCD002 /N:2 /P:200
  62.  
  63.         A sample of "CONFIG.SYS" is included in this floppy disk.
  64.  
  65.  
  66.  
  67.  
  68. 2. SPECIFICATIONS
  69.  
  70.         1) control maximum 4 drives
  71.  
  72.         2) support address of controller card
  73.               valid address : 200h, 220h, 240h, 260h, 300h, 320h, 340h, 360h
  74.               default       : 300h ( use I/O address 300h to 30Fh )
  75.  
  76.         3) play audio (output mode = Stereo, L-ch only, R-ch only, nothing)
  77.  
  78.         4) support door lock/unlock and eject
  79.  
  80.  
  81.