Skip to content

Releases: a2stuff/intbasic

v0.9

02 Mar 02:34
Compare
Choose a tag to compare

Initial release. Supports these commands:

  • Disk commands:
    • SAVE path saves the current program as an INT file.
    • LOAD path loads an INT file.
    • RUN path loads and runs an INT file.
    • DELETE path deletes the specified file.
    • RENAME path,newpath renames the specified file.
    • LOCK path and UNLOCK path lock/unlock the specified file.
    • CAT [path] or CATALOG [path] shows the contents of the current or specified directory.
    • PREFIX [path] shows or sets the current ProDOS prefix.
    • BYE exits back to ProDOS.
  • Programming commands:
    • CHAIN path loads and runs an INT file, without clearing variables.
  • Binary file commands
    • BSAVE path,A<address>,L<length>" saves a BIN file.
    • BLOAD path[,A<address>]" loads a BIN file.
    • BRUN path[,A<address>]" runs a BIN file.

Notes:

  • Commands from Integer BASIC e.g. PRINT "<ctrl-D>BLOAD RESOURCE" are supported.
  • Commands for operating on text files (MAXFILES, OPEN, READ, etc) and EXEC are not (yet) supported.
  • Slot and drive parameters (,S6,D1) are not (yet) supported.
  • MON and NOMON commands and volume parameter (,V254) are accepted but ignored.