This disk is somehow realted to analiz_watalis.ccvf. Both are by the same author, and Agilis mentions watalis in some of the comments. Boot up analiz_watals.ccvf, run the AUTO MENU.BAS program, which then returns to a modified boot prompt. Type LOAD "WADEMO":RUN to get an explanation of what WATALS is about. WATALS is a subroutine package for doing common programming tasks. ANALIZ is a character and word parsing program. SEQFIL is a sequential file access utility. AGILIS is a "screen processing" program. -------- Agilis seems to be a system whereby an unskilled person can create a sequence of smartly presented screens, like the type useful for educational presentations. It seems that the programs can't be run directly (eg, LOAD "AGDEMO":RUN) but must be launched from the menu. "AGDEMO" was created by a French major without any previous computer experience, it claims. The displays won't make any sense unless the lower case character generator is enabled. It is probably best to run this with v8.79 ROMs as one of the screens says that v6.79 may or may not work (i.e., it wasn't tested). There are some other short programs on the disk, explained from the MENU.BAS screens. AGDEMO.BAS has some very intriguing lines which look like this: 1100 REM CHANGE TO LOWER CASE 1110 X=CALL(LOWR)(T$,""):T$=ED$ and 1400 REM SIMPLE KEY-WORD CHECK 1410 RI=0:X=CALL(KEY+LOWR+LVBL)(T$+" ",ROOT$) AND 255: REM NORMALIZE TO 8 BITS 1420 IF X>0 THEN RI=1 Whoa!