home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / CD32 / CD32_Support / devs / DOSDrivers / CD0 < prev   
Encoding:
Text File  |  1993-10-18  |  837 b   |  33 lines

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