home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 2: Collection B / 17Bit_Collection_B.iso / files / 1385.dms / in.adf / devs / MountList < prev    next >
Encoding:
Text File  |  1991-09-16  |  3.2 KB  |  138 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. QB0:       Device = ramdrive.device
  41.            Unit   = 0
  42.            Flags  = 0
  43.            Surfaces  = 2
  44.            BlocksPerTrack = 11
  45.            Reserved = 2
  46.            Interleave = 0
  47.            LowCyl = 0  ;  HighCyl = 7
  48.            Buffers = 1
  49.            BufMemType = 1
  50.            Bootpri=127
  51. #
  52.  
  53. QB1:       Device = ramdrive.device
  54.            Unit   = 0
  55.            Flags  = 0
  56.            Surfaces  = 2
  57.            BlocksPerTrack = 11
  58.            Reserved = 2
  59.            Interleave = 0
  60.            LowCyl = 0  ;  HighCyl = 18
  61.            Buffers = 1
  62.            BufMemType = 1
  63.            Bootpri = 127
  64. #
  65.  
  66. QB2:       Device = ramdrive.device
  67.            Unit   = 0
  68.            Flags  = 0
  69.            Surfaces  = 2
  70.            BlocksPerTrack = 11
  71.            Reserved = 2
  72.            Interleave = 0
  73.            LowCyl = 0  ;  HighCyl = 79
  74.            Buffers = 1
  75.            BufMemType = 1
  76.            Bootpri = 127
  77. #
  78.  
  79. /* Mount a 5.25" disk drive to be mounted as DF2: */
  80.  
  81. DF2:       Device = trackdisk.device
  82.            Unit   = 2
  83.            Flags  = 1
  84.            Surfaces  = 2
  85.            BlocksPerTrack = 11
  86.            Reserved = 2
  87.            Interleave = 0
  88.            LowCyl = 0  ;  HighCyl = 39
  89.            Buffers = 20
  90.            BufMemType = 3
  91. #
  92.  
  93. /* An example mount entry using the fast file system with a partition
  94.    of the hard disk using the 2090 disk controller.  PREP has been
  95.    used to create the first partition (up to cylinder 20).  The second
  96.    partition is MOUNTed, using the following entry:
  97.    NOTE: Some hard disk drivers require more stack than specified here.
  98.    Some may required less.
  99.    (The hard disk is not included; this is only an example.)
  100. */
  101.  
  102. FAST:
  103.     Device = hddisk.device
  104.     FileSystem = l:FastFileSystem
  105.     Unit   = 1
  106.     Flags  = 0
  107.     Surfaces  = 4
  108.     BlocksPerTrack = 17
  109.     Reserved = 2
  110.     Interleave = 0
  111.     LowCyl = 21  ;  HighCyl = 800
  112.     Buffers = 30
  113.     GlobVec = -1
  114.     BufMemType = 1
  115.     Mount = 1
  116.     DosType = 0x444F5301
  117.     StackSize = 4000
  118. #
  119.  
  120. /* Let's say you have an A2000 with an internal drive, and an external
  121.    drive, and you want to refer to the external drive as DF1: as well
  122.    as DF2:   Well, this MountList entry will do it for you.  This technique
  123.    can be extended to provide you with a drive A: and B: if you really
  124.    want.
  125. */
  126.  
  127. DF1:       Device = trackdisk.device
  128.            Unit   = 2
  129.            Flags  = 1
  130.            Surfaces  = 2
  131.            BlocksPerTrack = 11
  132.            Reserved = 2
  133.            Interleave = 0
  134.            LowCyl = 0  ;  HighCyl = 79
  135.            Buffers = 20
  136.            BufMemType = 3
  137. #
  138.