home *** CD-ROM | disk | FTP | other *** search
- ; ------------ Quick Introduction to GRASP -------------
- ;
- ; To use GRASP, just enter GRASP commands on successive lines and then press
- ; F10 to execute the program. A GRASP program line may start with one of three
- ; things:
- ;
- ; 1) A comment, which starts with a semi-colon, like this line.
- ; 2) A label, which is a name (no spaces) with a colon at the end.
- ; 3) A valid GRASP command.
- ;
- ; The following program sets the video mode, loads a picture, dissolves it to
- ; the screen, then waits for a key to be pressed. PRESS F10 TO RUN IT.
- ;
- video A ; Set video mode to CGA 320x200 4 color
- pload grasp,1 ; Load grasp.pic into buffer 1
- pfade 20,1 ; Fade picture to screen using pfade number 20
- waitkey ; Wait for a keypress
- ;
- ; For more help, press one of the following function keys:
- ;
- ; F1 - Help with this editor.
- ; F2 - A list of all GRASP commands and their syntax.
- ; F3 - A description of all the fades and valid video modes.
- ;