6 2 5 S E R I E S C D - R O M D E V I C E D R I V E R --------------------------------------------------------------------------- To install 625 series CD-ROM device driver, the syntax in CONFIG.SYS is as follows: DEVICE=VIDE-CDD.SYS /D:MSCD001 [/P:xxx,yy] where [/P:xxx,yy] specifies the IDE port which is connected to the drive and the interrupt request. 'xxx' is the base address (hexadecimal notation) of IDE port. xxx = 1f0 : Port 1 170 : Port 2 1e8 : Port 3 168 : Port 4 'yy' is the interrupt number (decimal notation) of the corresponding IDE port. For example, when eight drives are installed, the command line in the CONFIG.SYS file could be entered as follows: DEVICE=VIDE-CDD.SYS /D:MSCD001 /P:1f0,14 /P:170,15 /P:1e8,12 /P:168,10 NOTE: Our device driver will automatically search the drives for 4 ports up to 8 drives, and the ports are 0x1f0, 0x170, 0x1e8 and 0x168 with interrupt number 14, 15, 12 and 10 as default, respectively. If your IDE ports and their respective interrupt numbers are the same as those mentioned above, you don't have to specify them verbosely. --------------------------------------------------------------------------- To enable the CD-ROM drive to read CD-ROM discs that use the High Sierra or ISO 9660 format, in addition to installing the 625 CD-ROM device driver, you need to insert the following line into your AUTOEXEC.BAT file: MSCDEX /D:MSCD001 To have a detail knowledge about the use of the MSCDEX.EXE program, please refer to MS-DOS user manual. ---------------------------------------------------------------------------