An Apple 1 Emulator in Javascript
Go to file
dependabot[bot] 7c12ff15db
Bump webpack from 5.64.4 to 5.76.0
Bumps [webpack](https://github.com/webpack/webpack) from 5.64.4 to 5.76.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.64.4...v5.76.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-14 18:11:26 +00:00
.github/workflows Add test files. 2019-11-23 15:20:21 -08:00
asm automaton 2020-10-08 19:23:01 -07:00
css Fix padding. 2019-09-05 21:24:06 -07:00
js Upgrade eslint 2021-11-26 13:07:26 -08:00
tapes automaton 2020-10-08 19:23:01 -07:00
test Skip heavy CPU test by default. 2019-11-23 15:20:21 -08:00
.editorconfig automaton 2020-10-08 19:23:01 -07:00
.eslintrc.json Make tape global in config 2020-07-19 15:15:08 -07:00
.gitignore First commit to github. 2019-09-04 20:03:11 -07:00
LICENSE First commit to github. 2019-09-04 20:03:11 -07:00
README.md Merge about and README. 2019-11-23 15:58:00 -08:00
apple1js.html automaton 2020-10-08 19:23:01 -07:00
babel.config.js First commit to github. 2019-09-04 20:03:11 -07:00
package-lock.json Bump webpack from 5.64.4 to 5.76.0 2023-03-14 18:11:26 +00:00
package.json Bump webpack from 5.64.4 to 5.76.0 2023-03-14 18:11:26 +00:00
webpack.config.js Upgrade webpack 2021-11-26 13:01:08 -08:00

README.md

apple1js

What is this?

An Apple 1 emulator written in Javascript and HTML5

Things are still a little rough around the edges right now, hopefully I will have more time to clean things up.

First

npm install

To run a development server

npm run dev

Then open http://localhost:8080/apple1js.html

To build a static distribution into dist

npm run build

Requirements

A Browser with HTML5 Support

The most recent versions of Google Chrome, Safari, Firefox, and Opera all seem to work reasonably well these days, although variations in HTML5 support pop up, and occasionally a major release will move things around out from under me. IEs prior to 9 lacks canvas tag support and are unsupported. IE 9+ renders nicely on a modern machine.

Basic Knowledge of the Apple 1

If you don't know how to use an Apple 1, this won't be much fun for you. A good place to start is the Apple I Owners Club.

Known Limitations

Limited Accuracy

Unlike the Apple ][ I wrote an emulator for, I don't own an Apple 1. My emulation is based on all the reference materials I was able to dig up, and by comparison to the behavior of other emulators.

Acknowlegements

I heavily referenced:

And special thanks to:

  • Mike for an eclectic collection of useful information. Someday I will work up the nerve to try building a replica.
  • And of course Woz, for launching my 30+ years of both silly and practical computer projects.

Updates

2013-06-25

  • ACI Emulation

    Programs are now loaded via ACI emulation off of virtual tapes. This is slower than just slamming them into memory, faster than emulated typing. Actually loading programs from audio files is on my radar, but quite a bit more work.

2013-06-05

  • More Accurater

    I've scraped the Internet for more information. For instance Cameron's Closet had some nice info on character display.

  • Krusader off by default

    Krusader seems to cause some output weirdness outside of the Krusader shell, so I'm not using it by default anymore. Use #krusader to turn it back on.

2013-05-28

  • Less Limited Input

    Pasting into the load window is now the same as typing. For now it is not any faster, though.

2013-05-27

  • Krusader

    I've decided to use Krusader as the default ROM for now. I'm just starting to find my way around it, but other Apple 1 people might find it useful.