This is a version of Steve Wozniak's Integer BASIC for the Apple II, with a wrapper that allows it to be loaded under ProDOS. It operates in two modes:
-
When invoked directly, the Integer BASIC
>
prompt is shown and you can type in and execute programs. The following additional commands are available at the prompt:SAVE path
saves the current program as anINT
program file.LOAD path
loads anINT
program file.RUN path
loads and runs anINT
program file.PREFIX
shows the current ProDOS prefix.PREFIX path
sets the current ProDOS prefix.CAT
orCATALOG
shows the contents of the current directory.CAT path
orCATALOG path
shows the contents of the specified directory.DELETE path
deletes the specified file.RENAME path,newpath
renames the specified file.BSAVE path,A<address>,L<length>"
saves aBIN
file.BLOAD path[,A<address>]"
loads aBIN
file.BRUN path[,A<address>]"
runs aBIN
file.BYE
exits back to ProDOS.
-
When invoked as an "interpreter" for an
INT
file from a program selector (such as Bitsy Bye or Apple II DeskTop), the file is loaded and executed.- When the program ends normally or encounters an error, control is returned to ProDOS and the program selector.
- Pressing Control+C will usually exit a program as well.
- Optionally, hold down Open Apple or Solid Apple when starting to allow exiting the program to remain at the
>
prompt.
⚠️ Note that while Integer BASIC programs do have the ability to execute commands from BASIC withPRINT "<control-D>..."
, only the above commands are supported. Commands for operating on text files (OPEN
,READ
, etc) are not supported.
See Integer BASIC on Wikipedia or Apple II BASIC Programming Manual to learn more about the language.
This uses the Integer BASIC disassembly by Paul R. Santa-Maria from: https://6502disassembly.com/a2-rom/ (utilizing the SourceGen format conversion by Andy McFadden)
Modifications:
- Target address commented out (defined by includer)
SYNTABLE-118
is corrected toSYNTABLE>>1
- Dead code is ifdef'd out