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

  1. /***************************************************************/
  2. /*  CacheCDFS mountlist entry © 1993 Elaborate Bytes, O. Kastl */
  3. /***************************************************************/
  4.     FileSystem     = L:CacheCDFS /* The name of the game */
  5.     Device         = "atapi.device" /* Name of exec device driver */
  6.     Unit           = 1 /* exec device unit */
  7.     Flags          = 1 /* OpenDevice flags */
  8.     BlocksPerTrack = 351000 /* Unused */
  9.     BlockSize      = 2048 /* True, but unused */
  10.     Mask           = 0x7ffffffe /* Memory mask for direct read */
  11.     MaxTransfer    = 0x100000 /* Maximum amount of bytes for direct read */
  12.     Reserved       = 0 /* Unused */
  13.     Interleave     = 0 /* Unused */
  14.     LowCyl         = 0 /* Unused */
  15.     HighCyl        = 0 /* Unused */
  16.     Surfaces       = 1 /* Unused */
  17.     Buffers        = 50 /* Number of cache lines */
  18.     BufMemType     = 1 /* MEMF_PUBLIC */
  19.     GlobVec        = -1 /* Do not change! */
  20.     Mount          = 1 /* Mount it immediately */
  21.     Priority       = 10 /* Priority of FileSystem task */
  22.     DosType        = 0x43443031 /* Currently unused */
  23.     StackSize      = 3000 /* Minimum stack required is 3000! */
  24.     Control        = "MD=0 LC=1 DC=8 L LV AL LFC=1 HF HR=.rs AUDIO=CDFS/PlayCD/PlayCD"
  25.    /* The Control field is for special adjustments */
  26.    /* L/S convert all file/volume names to lowercase */
  27.    /* LV/S convert volume names to lowercase */
  28.    /* AL/S Auto-Lower converts only non-Amiga CDs */
  29.    /* LFC/N start converting at this character */
  30.    /* LC/N/A number of blocks per cache line */
  31.    /* DC/N/A number of cache lines for the data cache */
  32.    /* MD/N/A number of blocks, when starting direct read, not using */
  33.    /* the cache. 0 will be a reasonable default (LC*DC+1) */
  34.    /* S/S Do SCSI direct commands, no Trackdisk like commands! */
  35.    /* NC/S Do NOT use TD_ADDCHANGEINT, poll for DiskChange! */
  36.    /* M/S Issue a TD_MOTOR (OFF) command after read */
  37.