45. ULTRA-SIMPLE DISC MENU ~~~~~~~~~~~~~~~~~~~~~~ This is a very simple but effective program for CHAINing your programs off a disc. The TAB(40) may look a little eccentric, but in combination with the VDU11, it wipes the previous line. Miss them out, and you'll see what I mean. You should set the disc to CHAIN "MENU" when BOOTed up, and put your program names into the DATA list, finishing with "END". You could of course add pretty colours and so on to make it more interesting. 10 CLS:PRINT'':A%=0:REPEAT:READ N$:A%=A%+1:PRINT;A%" "N$:UNTIL N$="END" 20 RESTORE:VDU11:A%=0:INPUTTAB(40)"Enter Choice "B%:REPEAT:READ N$:A%=A%+1:UNTIL A%=B% OR N$="END" 30 IF N$<>"END" THEN CHAIN N$ ELSE RUN 40 DATA MEMDUMP,SHACK3,TERMIN,ROMPEEP,END