home *** CD-ROM | disk | FTP | other *** search
- ; Pull-Down shell overlay
- ; Author: Harold F. Bower
- ; Date : 17 Feb 1990 (Version 0.1)
-
- ; This file contains information needed to tailor the Menu Bar entries and
- ; Item selections for the Pull-Down Menu Demonstration program. Change
- ; the entries to suit your system, assemble to a HEX file and overlay on
- ; the main SHELL.COM program with a program such as MYLOAD (or the older
- ; MLOAD programs).
-
- ORG 10DH ; The base address of the tables is here
-
- ; These tables are variable in content. Enter the File Names (type MUST be
- ; COM) for the files you wish to appear in the Menu Item lists. If you
- ; want or need arguments with any program, enter 0FFH after the 8-character
- ; name, otherwise enter a 0. Only four items are permitted per Menu Bar.
-
- TBL0: DEFB 'ZXD ',0FFH ; "Files" Entries
- DEFB 'DIR ',0
- DEFB 'FILEDATE',0FFH
- DEFB ' ',0
- DEFB ' ' ; Single space to end
-
- TBL1: DEFB 'COPY ',0FFH ; "Utils" Entries
- DEFB 'DATSEEEP',0
- DEFB 'FILEATTR',0FFH
- DEFB 'SHOW ',0
- DEFB ' '
-
- TBL2: DEFB 'ZDE ',0FFH ; "Tools" Entries
- DEFB 'ZMAC ',0FFH
- DEFB 'ZMACLNK ',0FFH
- DEFB 'DU3 ',0
- DEFB ' '
-
- ; If you wish to change the primary Menu Bar Headings, change these entries.
- ; Each entry here corresponds to one of the three tables of file names above.
- ; NOTE: you must not alter the field lengths.
-
- CATS0: DEFB 'Files ' ; Null-terminated Menu bar headings
- CATS1: DEFB 'Utilities'
- CATS2: DEFB 'Tools '
-
- END