home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 10 / amigaformatcd10.iso / -screenplay- / shareware / galemp / galactic_empires / devs / mountlist next >
Text File  |  1994-12-09  |  859b  |  44 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. DF1:       Device = trackdisk.device
  34.            Unit   = 2
  35.            Flags  = 1
  36.            Surfaces  = 2
  37.            BlocksPerTrack = 11
  38.            Reserved = 2
  39.            Interleave = 0
  40.            LowCyl = 0  ;  HighCyl = 79
  41.            Buffers = 20
  42.            BufMemType = 3
  43. #
  44.