New Apple //e ROM project
Go to file
Lawrence Kesteloot fffda67741 Fix stash problem in AND or OR. 2018-08-12 00:03:01 -07:00
examples Fix array allocation and access. 2018-08-06 11:31:44 -07:00
.gitignore Break runtime into different C file. 2018-08-02 16:26:42 -07:00
Makefile Fix array allocation and access. 2018-08-06 11:31:44 -07:00
README.md Add REM and semicolon at end of PRINT. 2018-08-07 16:31:41 -07:00
apple2rom.cfg initial commit 2018-07-27 22:30:44 -07:00
crt0.s initial commit 2018-07-27 22:30:44 -07:00
exporter.h Fix stash problem in AND or OR. 2018-08-12 00:03:01 -07:00
exporter.s Fix stash problem in AND or OR. 2018-08-12 00:03:01 -07:00
interrupt.s initial commit 2018-07-27 22:30:44 -07:00
main.c Fix stash problem in AND or OR. 2018-08-12 00:03:01 -07:00
platform.c Scroll screen; remove volatile. 2018-08-02 18:59:31 -07:00
platform.h Scroll screen; remove volatile. 2018-08-02 18:59:31 -07:00
rom_usage.awk Make AWK script gawk-compatible. 2018-08-03 13:40:52 -07:00
runtime.c Fix stash problem in AND or OR. 2018-08-12 00:03:01 -07:00
runtime.h Fix stash problem in AND or OR. 2018-08-12 00:03:01 -07:00
supervision.lib use supervision.lib as lib source 2018-07-28 12:15:54 -07:00
vectors.s initial commit 2018-07-27 22:30:44 -07:00

README.md

Apple IIa

Custom ROM for the Apple IIe. Looks mostly like a real Apple IIe, but when you type RUN, the code is compiled instead of interpreted. Runs between 5 and 30 times faster.

Supported features: The classic way to enter programs with line numbers, 16-bit integer variables, HOME, PRINT, IF/THEN, FOR/NEXT, GOTO, low-res graphics (GR, PLOT, COLOR=, TEXT), REM, DIM (single-dimensional arrays), POKE, and integer and boolean arithmetic.

Not supported: Floating point, strings, high-res graphics, DATA/READ/RESUME, GOSUB/RETURN/POP, multi-dimensional arrays, keyboard input, exponentiation (A^B), and cassette I/O.

Dependencies

Running

TREES=$HOME/path/to/github/trees make run