home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 1112.dms / 1112.adf / devs / mountlist < prev    next >
Text File  |  1988-07-25  |  2KB  |  96 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9. #
  10.  
  11. /* This is an example of a non-filing system mount using a handler written
  12.    in C.
  13. */
  14.  
  15. SPEAK:     
  16.     Handler = L:Speak-Handler
  17.     Stacksize = 6000
  18.     Priority = 5
  19.     GlobVec = -1
  20. #
  21.  
  22. /*  This is an example of an alternative type of non-filing device mount,
  23.     used to mount the non-buffered serial handler
  24. */
  25.  
  26. AUX:
  27.     Handler = L:Aux-Handler
  28.     Stacksize = 1000
  29.     Priority = 5
  30. #
  31. /*  This is a non-filing system device */
  32.  
  33. PIPE:      
  34.     Handler = L:Pipe-Handler
  35.     Stacksize = 6000
  36.     Priority = 5
  37.     GlobVec = -1
  38. #
  39.  
  40. /* This is an example of a mount list entry for using the recoverable 
  41.    ram disk.  Depending on the amount of memory you wish to devote to
  42.    it, you may want to change the HighCyl value.
  43. */
  44.  
  45. RAD:       Device = ramdrive.device
  46.            Unit   = 0
  47.            Flags  = 0
  48.            Surfaces  = 2
  49.            BlocksPerTrack = 11
  50.            Reserved = 2
  51.            Interleave = 0
  52.            LowCyl = 0  ;  HighCyl = 21
  53.            Buffers = 5
  54.            BufMemType = 1
  55. #
  56.  
  57. /* Mount a 5.25" disk drive to be mounted as DF2: */
  58.  
  59. DF2:       Device = trackdisk.device
  60.            Unit   = 2
  61.            Flags  = 1
  62.            Surfaces  = 2
  63.            BlocksPerTrack = 11
  64.            Reserved = 2
  65.            Interleave = 0
  66.            LowCyl = 0  ;  HighCyl = 39
  67.            Buffers = 20
  68.            BufMemType = 3
  69. #
  70.  
  71. DH0:       Device = X500.device
  72.            FileSystem = l:FastFileSystem
  73.            Unit   = 1
  74.            Flags  = 0
  75.            Surfaces  = 4
  76.            BlocksPerTrack = 26
  77.            Reserved = 2
  78.            Interleave = 0
  79.            LowCyl = 0  ;  HighCyl = 614
  80.            Buffers = 30
  81.            GlobVec = -1
  82.            BufMemType = 1
  83. #
  84.  
  85. DF1:       Device = trackdisk.device
  86.            Unit   = 2
  87.            Flags  = 1
  88.            Surfaces  = 2
  89.            BlocksPerTrack = 11
  90.            Reserved = 2
  91.            Interleave = 0
  92.            LowCyl = 0  ;  HighCyl = 79
  93.            Buffers = 20
  94.            BufMemType = 3
  95. #
  96.