•  Back 
  •  MagiC's DFS-concept 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help page 
  •  Show info about hypertext 
  •  View a new file 
Topic       : TOS - The Operating System
Author      : 
Version     : tos.hyp (December 19, 2008)
Subject     : Programmieren/Atari
Nodes       : 3010
Index Size  : 93790
HCP-Version : 5
Compiled on : Atari
@charset    : atarist
@lang       : 
@default    : Title
@help       : 
@options    : +g -i -s +x +zz -t4
@width      : 70
View Ref-File11.5.15.1  The make-up of a DFS                                    TOS

Since the implementation of a DFS can only be performed in Assembler, 
this description is specified in Assembler syntax:

dfs_name:      DS.B      8    /* Subname of the DOS filesystems */
dfs_next:      DS.L      1    /* Next driver                    */
dfs_init:      DS.L      1    /* Initialization                 */
dfs_sync:      DS.L      1    /* Synchronises the filesystem    */
dfs_drv_open:  DS.L      1    /* New drive                      */
dfs_drv_close: DS.L      1    /* Release drive                  */
dfs_dfree:     DS.L      1    /* For Dfree                      */
dfs_sfirst:    DS.L      1    /* For Fsfirst                    */
dfs_snext:     DS.L      1    /* For Fsnext                     */
dfs_ext_fd:    DS.L      1    /* Extends a directory            */
dfs_fcreate:   DS.L      1    /* Creates a directory or file    */
dfs_fxattr:    DS.L      1    /* For Fxattr                     */
dfs_dir2index: DS.L      1    /* For Dreaddir                   */
dfs_readlink:  DS.L      1    /* For Freadlink                  */
dfs_dir2FD:    DS.L      1    /* for Fopen                      */
dfs_fdelete:   DS.L      1    /* For Fdelete and Ddelete        */
dfs_pathconf:  DS.L      1    /* For Dpathconf                  */

See also: Make-up of an XFS   MagiC