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.
 
 
 
 
 
 

38 lines
2.9 KiB

  1. AT END OF NEW EMPTY FILE
  2. LOC = 1
  3. LOF = 0
  4. SEEK= 1
  5. AT END OF NON-EMPTY FILE < 128
  6. LOC = 1
  7. LOF = 8
  8. SEEK= 9
  9. AT END OF NON-EMPTY FILE = 128
  10. LOC = 2
  11. LOF = 128
  12. SEEK= 129
  13. AT START OF NON-EMPTY FILE = 128
  14. LOC = 1
  15. LOF = 128
  16. SEEK= 1
  17. AT END OF NON-EMPTY FILE = 128
  18. LOC = 1
  19. LOF = 128
  20. SEEK= 128
  21. REAAD CHAR AT START OF NON-EMPTY FILE = 128
  22. A$=[1]
  23. LOC = 1
  24. LOF = 128
  25. SEEK= 2
  26. READ CHAR AT END OF NON-EMPTY FILE = 128
  27. A$=[0]
  28. LOC = 2
  29. LOF = 128
  30. SEEK= 129