ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
204 B

  1. 10 REM 'PEEK' TEST PROGRAM
  2. 20 FOR X=18368 TO 18380
  3. 30 READ Y
  4. 40 POKE X,Y
  5. 50 NEXT X
  6. 60 FOR X=18368 TO 18380
  7. 70 Y=PEEK(X)
  8. 80 PRINT CHR$(Y);
  9. 90 NEXT X
  10. 100 DATA 84,69,83,84,32,67,79,77,80,76,69,84,69
  11. 999 END