home *** CD-ROM | disk | FTP | other *** search
- ; CHAOSE Menu System
- ; (c) 1996 BM&TMD
-
- ; This program is divided basically in two files: this one, with the program
- ; itself (which is about six lines long) and the header file, with lots of
- ; procedures, which is the backbone of the thing.
-
-
- ; Include FIles
-
- *$USEFUNCS
- *$INCLUDE:CHMENU.H
-
- ; Variables
-
- BEGIN
-
- INT COLUMN ; Current Column
- INT LINE ; Current Line
-
- ; Init Variables
-
- COLUMN=1 ; Initialize Column to 1
- LINE=1 ; Initialize Line to 1
-
- ; Main Body
-
-
- MENUSYSTEM(LINE, COLUMN) ; Call the menu system procedure
-
- END ; End the program :)
-
-