home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ZSYS / SIMTEL20 / ZCPR3 / VFILR4-2.LBR / VFILER41.ZZ0 / VFILER41.Z8°
Text File  |  2000-06-30  |  2KB  |  77 lines

  1. ;  Program:  VFILER
  2. ;  Version:  4.1
  3. ;  Date:     26 August 1986
  4.  
  5.     include    vfhdr.z80    ; Basic equates, configuration option equates,
  6.                 ; ..external library references
  7.  
  8.     include vfmain.z80    ; Code for three main VFILER functions:
  9.                 ;   1) shell installation
  10.                 ;   2) filer operations
  11.                 ;   3) run ZEX under VFILER
  12.  
  13.     include vfmacro.z80    ; VFILER macro processing code
  14.  
  15.     include vfcmds1.z80    ; Command tables, screen display commands, and
  16.                 ; file pointer movement commands
  17.  
  18.     include vfcmds2.z80    ; Tagging, untagging, retagging commands
  19.  
  20.     include vfcmds3.z80    ; Miscellaneous commands: run command (Z), file
  21.                 ; size (F), disk status (S), option
  22.                 ; setting (O), and help (H, '?', '/'),
  23.                 ; sort toggle (A)
  24.  
  25.     include vfcmds4.z80    ; File printing (P) and viewing (V) commands
  26.  
  27.     include vfcmds5.z80    ; File copying (C) and unsqueezing (Q) commands
  28.  
  29.     include vfcmds6.z80    ; Move (M), delete (D), and rename (R) commands
  30.  
  31.     include vfcmds7.z80    ; Group commands
  32.  
  33.     include vfutils.z80    ; Utility code: unsqueezing and crc
  34.  
  35.     include vfsubs1.z80    ; File loading and sorting, file ring
  36.                 ; maintenance.
  37.                 ;        Major Routines
  38.                 ;    fileload    ringempt    ringfcb
  39.                 ;    setring        sort
  40.  
  41.  
  42.     include vfsubs2.z80    ; General purpose routines, initialization
  43.                 ;        Major Routines
  44.                 ;    bottom        cmpdehl        dkeyin
  45.                 ;    fill        idu        keyin
  46.                 ;    movea        moveb        movec
  47.                 ;    public        resdma        reset
  48.                 ;    sak        setup        stackset
  49.                 ;    vfyreq        vfyset
  50.  
  51.  
  52.     include vfsubs3.z80    ; File name and mask processing
  53.                 ;        Major Routines
  54.                 ;    filemask    filename    getfspec
  55.                 ;    getline        getmask        getzcmd
  56.                 ;    putmask        putopt
  57.  
  58.  
  59.     include vfsubs4.z80    ; General screen output routines
  60.                 ;        Major Routines
  61.                 ;    atcmd        banner        cur$back
  62.                 ;    cur$down    cur$last    cur$new
  63.                 ;    cur$next    clrcur        cprmpt
  64.                 ;    dispcfn        dirmore        dispfiles
  65.                 ;    ermsg        erclr        free$drv
  66.                 ;    findscr        fndnxt        prtspac
  67.                 ;    prdu        prfn(..)    psn$last
  68.                 ;    psn$next    psn$down    psn$back
  69.                 ;    rebuild        refresh        setscr
  70.                 ;    setcur        vcls        vereol
  71.                 ;    workmsg
  72.  
  73.  
  74.     include vfdata.z80    ; Data storage allocations
  75.  
  76.     end
  77.