Apple //e
Go to file
Brad Grantham b925142da1 add utilities to turn bitmap to code 2018-06-06 12:15:58 -07:00
.gitignore ignore objects 2016-11-08 13:23:26 -08:00
COLORBOUNCE.A LORES bouncing pixel 2016-11-18 23:25:03 -08:00
COLORBOUNCESOUND.A Audio. Probably won't work properly in FAST mode. 2016-11-23 23:29:23 -08:00
FRACTAL.A HIRES fractal 2016-11-18 23:25:22 -08:00
GRCOLORS.A Show all LORES colors 2016-11-18 23:25:48 -08:00
Makefile remove keyboard 2016-12-06 00:04:01 -08:00
QUADRADOODLE.A Draw lines mirrored in X and Y 2016-11-18 23:26:01 -08:00
RAY1.A fixup cut-and-paste 2016-11-22 09:53:35 -08:00
README.md Fixes formatting 2016-12-14 16:53:57 -08:00
apple2.rom Add BVC, another ROR, CLV, apple2.rom runs further 2016-11-07 11:39:25 -08:00
apple2_intbasic.rom add Apple 2 integer basic ROM (original ROMs) 2018-06-06 12:14:26 -07:00
apple2e.cpp Fix compile errors caused by moving to range for 2017-01-04 22:09:31 -08:00
apple2e.rom Add Apple 2e ROM from elsewhere. 2016-11-06 14:03:08 -08:00
apple2font.ppm utility to extract C from font image 2016-11-18 11:33:50 -08:00
bitmap_to_basic.py add utilities to turn bitmap to code 2018-06-06 12:15:58 -07:00
bitmap_to_c.py add utilities to turn bitmap to code 2018-06-06 12:15:58 -07:00
cycles.py cycle table formatting and more data 2016-11-28 09:55:01 -08:00
d6502.c use strcmp instead of == 2016-11-15 10:34:12 -08:00
dis6502.cpp compile on Linux; clean up on exit 2016-11-09 03:46:26 -08:00
dis6502.h disassembler in function 2016-11-07 21:22:08 -08:00
diskII.c600.c67f.bin beginning of diskII support 2016-11-26 14:51:14 -08:00
emulator.h Incomplete Apple //e emulator 2016-11-06 00:53:43 -07:00
extractglyphs.cpp properly output and use checkerboard char 2016-11-19 00:57:42 -08:00
fake6502.c want BCD 2016-12-09 13:06:41 -08:00
fake6502.h Partially implement floppy disks 2016-11-27 17:10:03 -08:00
floppy_bitmap.txt add floppy bitmap text files 2018-06-06 12:15:01 -07:00
floppy_bitmap_on.txt add floppy bitmap text files 2018-06-06 12:15:01 -07:00
floppy_out.txt add floppy bitmap text files 2018-06-06 12:15:01 -07:00
genkeys.py Rudimentary GL window with keyboard support 2016-11-16 16:16:10 -08:00
genrows.py generate HGR row interleaving 2016-11-18 23:29:57 -08:00
graph_cycles_before_new_insn.py Add counts and grapher for instruction progress 2017-01-05 15:19:40 -08:00
instructions_by_first_appearance_clock.csv Add counts and grapher for instruction progress 2017-01-05 15:19:40 -08:00
interface.cpp Change some tuples to pairs and typedef for readability 2017-01-18 16:48:00 -08:00
interface.h Move audio implementation into interface.cpp 2016-12-26 22:28:45 -08:00
interface_text.cpp add text-only interface source 2018-06-06 12:13:30 -07:00
keyboard.cpp Allow running without TTY (e.g. in Instruments) 2016-11-20 12:27:58 -08:00
keyboard.h Modified for interactivity 2016-11-07 21:22:49 -08:00
notes update notes regarding ROMs from our Apple ][e 2018-06-05 17:44:11 -07:00
sound_digitizer.dsk my sound digitizer application disk 2016-12-07 14:41:39 -08:00
switches.txt Partially implement floppy disks 2016-11-27 17:10:03 -08:00
testao.cpp AO test file 2017-01-03 10:09:18 -08:00

README.md

Apple2e

Yet another Apple //e emulator.

I wrote this not because the world needed another //e emulator, but because I wanted to have the fun of building a thing from scratch to run my old Apple //e software.

At the time of writing, the emulator handles only 40-column text mode and no floppy.

There are several AppleSoft files in this project (*.A) that can be copied into the clipboard and then pasted into the emulator window with CMD-V.

Thanks to Lawrence Kesteloot for the original keyboard code, and Bart Grantham for extracting all our old floppy disk images!

Thanks to Mike Chambers (miker00lz@gmail.com) for his 6502 CPU emulator, which I used as a reference when mine hung on "PRINT 5".

Requirements for building:

  • GLFW
  • libao
  • OpenGL 3.2-compatible system
  • C++11
  • Currently the project only builds on MacOSX because of the linker line in Makefile.

On MacOSX with MacPorts, the GLFW and libao dependency can be satisfied with glfw and libao ports. According to https://support.apple.com/en-us/HT202823, all modern Macs have OpenGL 3.2 or later. On my machine, I've been compiling with a g++ that outputs Apple LLVM version 8.0.0 (clang-800.0.42.1) for g++ -v.

Usage:

apple2e [options] ROM.8000.to.FFFF.bin

Options:

-debugger # start in the debugger
-fast     # start with CPU running as fast as it can run
-noaudio  # stream no audio buffers
-diskII diskIIrom.bin {floppy1image.dsk|none} {floppy2image.dsk|none}

Examples of operation:

# Use original Apple ][ ROM, no floppy controller,
# at maximum available clock rate.
apple2e -fast apple2o.rom

# Use Apple //e ROM, add diskII controller with two floppies,
# put LodeRunner.dsk in drive 1 and nothing in drive 2. Attempt
# to run at 1.023 MHz.
apple2e -diskII diskII.c600.c67f.bin LodeRunner.dsk none apple2e.rom < /dev/null

# Use updated Apple ][ ROM, attempt to run at 1.023 MHz, but
# don't output audio.
apple2e -noaudio apple2.rom

Useful debugger commands:

reset # Press CTRL-RESET
reboot # Press CTRL-OpenApple-RESET
fast # run CPU as fast as it can go
slow # Approximate CPU at 1.023 MHz
debug N # Set debug flags to N (decimal). See apple2e.cpp for flags
go # Exit debugging, free-run.
# Enter a blank line to step one instruction

When the window opens, the emulator displays a user interface panel to the right of the graphics screen. The buttons and icons are as follows:

  • RESET - simulate pressing CONTROL and RESET keys and releasing
  • REBOOT - simulate pressing CONTROL and Open-Apple and RESET keys and releasing
  • FAST - toggle between running at 1.023MHz and running the CPU as fast as possible (audio will stop in "fast" mode)
  • CAPS - toggle caps lock forcibly on or off.
  • COLOR - switch between color hi-res graphics and monochrome.
  • PAUSE - pause or resume running the CPU.
  • Floppy drive icons: Drag and drop floppy .dsk files onto a drive to "insert" the flopy disk. Click the drive icon to "eject" the floppy disk.

If no joystick or gamepad is configured, the Apple 2 screen acts as a joystick. To configure a joystick, store the GLFW numbers of the two axes and two buttons in "joystick.ini". A very skilled practitioner may be able to print the joysticks, axes, and buttons by modifying interface.cpp.