home *** CD-ROM | disk | FTP | other *** search
/ Phoenix CD 2.0 / Phoenix_CD.cdr / 11a / cover20.zip / COENDP.ASM next >
Assembly Source File  |  1991-01-21  |  781b  |  34 lines

  1.     PAGE    ,132
  2.     TITLE    COENDP - Diskette contents list - Workarea Definitions
  3.     COMMENT        * Version 1.0  -  June 1983
  4.             (PER Dr. Dobbs Journal, January, 1984, #87)
  5.             (Dan Daetwyler "Sorted Diskette Directory for
  6.                  the IBM PC")
  7.  
  8.         Version 2.0       Bruce F. Cameron
  9.                   Cincinnati  OH 
  10.  
  11.            February 25, 1985
  12.  
  13.     Counts hidden files
  14.     Grouped sort (i.e. all COM files first etc.)
  15.     Includes Volume Label and Directory (if not root)
  16.     Lists Subdirectory names
  17.     Free space up to 100M (hard disk)  *
  18. ;
  19. ;
  20.     PAGE    82
  21. ;
  22. CODE    SEGMENT    PARA PUBLIC 'CODE'
  23.     ASSUME    CS:CODE, DS:CODE
  24. ;
  25.     PUBLIC    SRCE, PNTR, RELOC
  26. ;
  27. RELOC    EQU    THIS BYTE        ; File extension reorder list
  28. PNTR    EQU    RELOC+10*4+1        ; Pointer list
  29. SRCE    EQU    PNTR+240        ; Start of entry stack
  30. ;
  31. CODE    ENDS
  32. ;
  33.     END
  34. S