New Apple //e ROM project
Go to file
Lawrence Kesteloot d041ebd995 Fix NEXT statement some more. (#3) 2023-09-06 09:18:34 -07:00
examples Add Mandelbrot set example. 2018-08-14 21:05:45 -07:00
.gitignore Add Apache license. 2018-09-25 14:22:14 -07:00
LICENSE Add Apache license. 2018-09-25 14:22:14 -07:00
Makefile Add Apache license. 2018-09-25 14:22:14 -07:00
README.md Add link to full write-up. 2023-05-05 18:19:38 -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 NEXT statement some more. (#3) 2023-09-06 09:18:34 -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.

Full write-up

Dependencies

Running

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

License

Copyright 2018 Lawrence Kesteloot and Brad Grantham

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.