home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1996 #1 / amigaacscoverdisc01.iso / storage / dosdrivers / cd0 < prev    next >
Text File  |  1994-07-06  |  896b  |  37 lines

  1. /* $VER: CD0 40.6 (31.8.93)
  2.  *
  3.  * CD-ROM file system entry
  4.  *
  5.  * This file enables the CD-ROM file system which allows you to read standard
  6.  * ISO-9660 CD-ROM disks from an Amiga with a SCSI or IDE controller.
  7.  *
  8.  * The "Unit" line defines the SCSI address of the CD-ROM drive. Drives
  9.  * often come configured as unit 2, which is the default. Check the
  10.  * documentation for your CD-ROM drive to find the exact SCSI address.
  11.  * Note that most drives let you change this number using jumpers.
  12.  */
  13.  
  14. FileSystem    = L:CDFileSystem
  15. Flags        = 0
  16. Surfaces    = 1
  17. SectorsPerTrack    = 1
  18. SectorSize    = 2048
  19. Mask        = 0x7ffffffe
  20. MaxTransfer    = 0x100000
  21. Reserved    = 0
  22. Interleave    = 0
  23. LowCyl        = 0
  24. HighCyl        = 0
  25. Buffers        = 5
  26. BufMemType    = 0
  27. StackSize    = 1000
  28. Priority    = 10
  29. GlobVec        = -1
  30. DosType        = 0x43443031
  31.  
  32. /* The Device and Unit fields are controlled by tooltypes in the CD0 icon.
  33.  *
  34.  * Device    = scsi.device
  35.  * Unit        = 2
  36.  */
  37.