image of READY prompt

Wang2200.org

Listing of file='GAMES' on disk='vmedia/games_vol_3.wvd.zip'

# Sector 367, program filename = 'GAMES'
0010 REM GAMES MENU
0020 DIM N$(24)8, D$64
0030 PRINT HEX(03)
0035 PRINT "============================== GAMES =============================
     ="
0040 RESTORE
   : N=1
0050 READ N$(N),D$
0060 IF N$(N)="END" THEN 100
0070 PRINTUSING 80,N,N$(N),D$
0080 % ##. ######## ########################################################
0090 N=N+1
   : GOTO 50
0100 PRINT
   : INPUT "Which game number do you want to play",I
0110 IF I<1 THEN 30
   : IF I>=N THEN 30
0120 LOAD T N$(I)
1000 DATA "BALANCE", "Find which coin of 12 is different (needs 2236 term)"
1010 DATA "BATNUM", "Generalized game of NIM"
1020 DATA "ELIZA", "Psychoanalyst"
1030 DATA "INVADERS", "Space Invaders"
1040 DATA "KERMIT", "Frogger (needs 2236 term)"
1050 DATA "MATCH", "Try to match numbers as fast as they arrive"
1060 DATA "PAPER", "Economic simulation game"
1070 DATA "RACE", "Race car through one of three courses"
1080 DATA "SNAKE", "Graphical Demo (needs 2236 term)"
1090 DATA "SPACE", "Fly through the starfield without getting hit"
1100 DATA "TACTIC", "Compete against computer filling 5x5 grid"
1110 DATA "TOWER", "Tower of Hanoi (needs 2236 term)"
1120 DATA "WHIST", "Card game"
1130 DATA "WORM", "The worm grows as you eat. Don't run into anything."
1140 DATA "END", "END"