/*
 * Example mountlist entries for the XFH file system handler.
 *
 * These entries are suitable for mounting XH0: - XH3:, or they can
 * be modified to personal taste.
 *
 * The general pattern for use is:
 *
 *    Set up a mountlist entry for device XXX: (this mountlist assumes
 *    XH<n>:). Fill in the FileSystem field with the full path of the
 *    handler code (usually L:XFH-Handler), and the Unit field with the
 *    desired unit number (explained below). You may also want to change
 *    the Priority field to control whether the handler should steal the
 *    CPU from other busy tasks (but don't set it any higher than 10).
 *
 *    The unit number is used to control what directory the handler
 *    should reside in. For example, say that you have a directory
 *    'SYS:Text/Manuals' containing packed files that you wish the XFH
 *    to unpack automatically on access. To achive this, assign XFH<n>,
 *    where <n> is the unit number, to the desired directory, like
 *
 *       ASSIGN XFH0: SYS:Text/Manuals
 *
 *    After mounting, you will have access to a new disk-like device
 *    with the volume name 'Manuals:' from which the packed files can
 *    be accessed in their original form.
 *
 * It is also possible to use an option file in 's:xfh/'. Consult the file 
 * XFH.doc for further details.
 *
 */

XH0:
    FileSystem = L:XFH-handler
    Unit = 0
    Priority = 4
    Mount = 1
    Stacksize = 6000
    GlobVec = -1
    Device = "dummy.device"
    LowCyl = 0
    HighCyl = 0
    BlocksPerTrack = 0
    Surfaces = 0
    Flags = 0
    Reserved = 0
    Interleave = 0
    Buffers = 0
    BufMemType = 0
#

XH1:
    FileSystem = L:XFH-handler
    Unit = 1
    Priority = 4
    Mount = 1
    Stacksize = 6000
    GlobVec = -1
    Device = "dummy.device"
    LowCyl = 0
    HighCyl = 0
    BlocksPerTrack = 0
    Surfaces = 0
    Flags = 0
    Reserved = 0
    Interleave = 0
    Buffers = 0
    BufMemType = 0
#

XH2:
    FileSystem = L:XFH-handler
    Unit = 2
    Priority = 4
    Mount = 1
    Stacksize = 6000
    GlobVec = -1
    Device = "dummy.device"
    LowCyl = 0
    HighCyl = 0
    BlocksPerTrack = 0
    Surfaces = 0
    Flags = 0
    Reserved = 0
    Interleave = 0
    Buffers = 0
    BufMemType = 0
#

XH3:
    FileSystem = L:XFH-handler
    Unit = 3
    Priority = 4
    Mount = 1
    Stacksize = 6000
    GlobVec = -1
    Device = "dummy.device"
    LowCyl = 0
    HighCyl = 0
    BlocksPerTrack = 0
    Surfaces = 0
    Flags = 0
    Reserved = 0
    Interleave = 0
    Buffers = 0
    BufMemType = 0
#
