home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 4: Phase Four / 17Bit_Phase_Four.iso / files / 3336a.dms / 3336a.adf / devs / mountlist < prev    next >
Encoding:
Text File  |  1992-09-02  |  1.5 KB  |  79 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.  
  41. NET:       Stacksize  = 8000
  42.            Priority   = 5
  43.            GlobVec    = -1
  44.            Unit       =  0
  45.            Device     = devs:parnet.device
  46.            Surfaces   = 0
  47.            BlocksPerTrack = 0
  48.            Reserved   = 0
  49.            LowCyl     = 0
  50.            HighCyl    = 0
  51.            Filesystem = l:netpnet-handler
  52. #
  53.  
  54.  
  55. IBMA:
  56.    Device = devs:mfm.device
  57.    Unit = 0
  58.    LowCyl = 0 ; HighCyl = 79
  59.    Surfaces = 2
  60.    BlocksPerTrack = 9
  61.    DosType = 3
  62. #
  63.  
  64. /* A sample mountlist entry for a harddisk.  Insert the correct name
  65. for your own device and unit and MAKE SURE YOU GET THE CYLINDER
  66. NUMBERS CORRECT - if your Amiga and PC drives overlap you could easily
  67. lose the contents of both of them! */
  68.  
  69. IBMC:
  70.       Unit = 000
  71.       Flags = 0
  72.       Surfaces = 4
  73.       BlocksPerTrack = 26
  74.       LowCyl = 293
  75.       HighCyl = 320
  76.       DosType = 0
  77. #
  78. #
  79.