home *** CD-ROM | disk | FTP | other *** search
/ Mastering Computers 3 / Mastering Computers Vol 3.iso / Drivers / CD-ROM drivers / Mitsumi / MITSU202.ZIP / CONFIG.SYS next >
Encoding:
Text File  |  1993-04-19  |  987 b   |  29 lines

  1. rem
  2. rem  The following line illustrates some parameters that can be used with 
  3. rem  the CD-ROM Installable File System (IFS) for increased system 
  4. rem  performance.
  5. rem 
  6. rem  /C:n   - where n is the number of 64kb segments to use for buffering
  7. rem  /M:n   - where n is the number of sectors to read at a time
  8. rem  /Q     - indicates quiet mode
  9. rem 
  10.  
  11. IFS=C:\OS2\CDFS.IFS /C:8 /M:16
  12.  
  13. rem
  14. rem  The following line below is an example of a command line to the
  15. rem  driver. It configures the driver to use 2 CD-ROM drives. 
  16. rem 
  17. rem  The first drive (unit 0) has an 8-bit adapter, a base port address 
  18. rem  of 300 hex and uses IRQ 9 (hardware interrupt 2).
  19. rem 
  20. rem  The second drive (unit 1) has a 16-bit adapter, a base port address
  21. rem  of 310 hex and uses IRQ 10.
  22. rem
  23. rem  The Verbose switch is also used to print some driver statistics
  24. rem  during booting.
  25. rem
  26.  
  27. BASEDEV=MITSUMI.ADD /V /UNIT:0 /ADAPTER:8 /PORT:300 /IRQ:9 /UNIT:1 /ADAPTER:16 /PORT:310 /IRQ:10
  28.  
  29.