home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1997 #3 / amigamamagazinepolishissue03-1 / dos_drivers / empcd < prev    next >
Text File  |  1996-12-07  |  1KB  |  38 lines

  1. /* Entry used to acces a CD-ROM not hooked to the EMPLANT SCSI port */
  2.  
  3. /* Name of the device controlling the CD-ROM.
  4.  * IMPORTANT: only Mount V39+ recognizes this field. Workbench 2.x users must
  5.  * modify empcd.device using an hex editor (the default is scsi.device)
  6.  */
  7. Control        = atapi.device
  8.  
  9. /* Unit of the device controlling the CD-ROM */
  10. Unit           = 1
  11.  
  12. /* Flags for the device */
  13. Flags          = 0
  14.  
  15. /* Number of buffers to use for the prefetch cache.
  16.  * Increasing this value by 1 consumes an additional 4K of RAM.
  17.  */
  18. Buffers        = 25
  19.  
  20. /* Memory flags used to allocate buffers. Set this to 513 when using a DMA
  21.  * Zorro-2 controller on a 32 bit addressing machine (A3000, A4000)
  22.  */
  23. BufMemType     = 1
  24.  
  25. /* Maximum amount of bytes to trasfer in one go */
  26. MaxTransfer    = 0x100000
  27.  
  28. /* DO NOT TOUCH the following fields */
  29. Device         = empcd.device
  30. BlocksPerTrack = 32
  31. Surfaces       = 16
  32. Reserved       = 2
  33. Interleave     = 0
  34. LowCyl         = 0
  35. HighCyl        = 3000
  36. StackSize      = 600
  37. Mount          = 0
  38.