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 / JSAGE / ZSUS / Z3COM / Z3COM-P.LBR / PDMSHELL.OVL < prev    next >
Text File  |  1990-02-17  |  2KB  |  45 lines

  1. ; Pull-Down shell overlay
  2. ; Author: Harold F. Bower
  3. ; Date  : 17 Feb 1990 (Version 0.1)
  4.  
  5. ; This file contains information needed to tailor the Menu Bar entries and
  6. ; Item selections for the Pull-Down Menu Demonstration program.  Change
  7. ; the entries to suit your system, assemble to a HEX file and overlay on
  8. ; the main SHELL.COM program with a program such as MYLOAD (or the older
  9. ; MLOAD programs).
  10.  
  11.     ORG    10DH        ; The base address of the tables is here
  12.  
  13. ; These tables are variable in content.  Enter the File Names (type MUST be
  14. ; COM) for the files you wish to appear in the Menu Item lists.  If you
  15. ; want or need arguments with any program, enter 0FFH after the 8-character
  16. ; name, otherwise enter a 0.  Only four items are permitted per Menu Bar.
  17.  
  18. TBL0:    DEFB    'ZXD     ',0FFH    ; "Files" Entries
  19.     DEFB    'DIR     ',0
  20.     DEFB    'FILEDATE',0FFH
  21.     DEFB    '        ',0
  22.     DEFB    ' '        ; Single space to end
  23.  
  24. TBL1:    DEFB    'COPY    ',0FFH    ; "Utils" Entries
  25.     DEFB    'DATSEEEP',0
  26.     DEFB    'FILEATTR',0FFH
  27.     DEFB    'SHOW    ',0
  28.     DEFB    ' '
  29.  
  30. TBL2:    DEFB    'ZDE     ',0FFH    ; "Tools" Entries
  31.     DEFB    'ZMAC    ',0FFH
  32.     DEFB    'ZMACLNK ',0FFH
  33.     DEFB    'DU3     ',0
  34.     DEFB    ' '
  35.  
  36. ; If you wish to change the primary Menu Bar Headings, change these entries.
  37. ; Each entry here corresponds to one of the three tables of file names above.
  38. ; NOTE: you must not alter the field lengths.
  39.  
  40. CATS0:    DEFB    'Files    '    ; Null-terminated Menu bar headings
  41. CATS1:    DEFB    'Utilities'
  42. CATS2:    DEFB    'Tools    '
  43.  
  44.     END
  45.