apple2ix/README.md

55 lines
1.7 KiB
Markdown
Raw Normal View History

2013-12-14 18:49:15 +00:00
Apple //ix
==========
2014-12-07 21:41:00 +00:00
Apple2ix is an Apple //e emulator written primarily in C and x86 assembly language with a smattering of Objective-C
(Cocoa port). Apple2ix is derived from the apple2-emul-linux project originally coded in the mid 90's.
2013-12-14 18:49:15 +00:00
Project Goals
-------------
2014-12-07 21:41:00 +00:00
The project seeks to be portable across a wide range of modern POSIX systesm including MacOSX desktop, Desktop
Linux/BSD, iOS, and Android.
As of December 2014, the emulator run on MacOSX 10.9+ and Debian GNU/Linux, and mobile ports are currently on the
drawing board.
Screenshots show an earlier version of the Linux variant.
2013-12-14 18:49:15 +00:00
2013-12-14 19:15:27 +00:00
![Apple //ix](https://raw.github.com/mauiaaron/apple2/master/docs/Apple2ix.png "Apple //ix")
2014-12-07 21:41:00 +00:00
Mac Package
-----------
2014-12-07 21:59:44 +00:00
A binary package for Macintosh is available at [deadc0de.org](http://deadc0de.org/Apple2Mac/)
2014-12-07 21:41:00 +00:00
Linux Package
2013-12-14 18:49:15 +00:00
-------------
2014-12-07 21:41:00 +00:00
At the moment consists of `./configure --prefix=...`, `make`, `make install` ;-)
2013-12-14 18:49:15 +00:00
2014-12-07 21:41:00 +00:00
Project Tech
------------
2013-12-14 18:49:15 +00:00
2014-12-07 21:52:22 +00:00
* C language for the majority of the project (still the most portable/reliable after all these years ;-)
2014-12-07 21:41:00 +00:00
* Assembly language for 65c02 CPU tightloop
2014-12-07 21:52:22 +00:00
* Extensive tests for 65c02 CPU, Apple //e VM, and display (expected framebuffer output)
* OpenGLES 2.x graphics
* OpenAL audio (emulated speaker and emulated Mockingboard/Phasor soundcards)
* Objective-C and Cocoa APIs (Mac/iOS variant)
2014-12-07 21:41:00 +00:00
![DOS 3.3](https://raw.github.com/mauiaaron/apple2/master/docs/DOS33.png "DOS 3.3 Applesoft BASIC and //e monitor")
2013-12-14 19:15:27 +00:00
2013-12-14 18:49:15 +00:00
Semi-Ordered TODO
-----------------
2014-12-07 21:41:00 +00:00
* Proper VBL timing
* ProDOS-order Disk Images
* ARM assembly/ABI variant (in prep for mobile)
* iOS port
* Android NDK port
* Emulator save/restore and image compatibility with AppleWin
* Other feature parity with AppleWin
* Improved debugger routines
2014-12-07 21:52:22 +00:00
* Emscripten/web frontend?
2013-12-14 19:15:27 +00:00