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
281 B

  1. 100 REM Purpose: Verify FREEFILE
  2. 110 REM Author: Howard Wulf, AF5NE
  3. 120 REM Date: 2015-02-19
  4. 130 REM
  5. 200 for i = 1 to maxdev
  6. 202 rem next value should be 1,2,3,...
  7. 205 print freefile
  8. 210 open "A" for output as #i
  9. 220 next i
  10. 225 REM next value should be zero
  11. 230 print freefile