2013-10-03 18:25:37 -07:00
|
|
|
apple2js
|
|
|
|
========
|
|
|
|
|
2019-03-04 19:55:35 -08:00
|
|
|
An Apple II emulator written in Javascript.
|
2013-10-10 11:20:45 -07:00
|
|
|
|
2019-03-04 19:55:35 -08:00
|
|
|
Things are still a little rough around the edges right now, hopefully I will have more time to clean things up.
|
2013-10-10 11:20:45 -07:00
|
|
|
|
2019-03-04 19:55:35 -08:00
|
|
|
First
|
2013-10-10 11:20:45 -07:00
|
|
|
|
2019-03-04 19:55:35 -08:00
|
|
|
```sh
|
|
|
|
npm install
|
|
|
|
```
|
|
|
|
|
|
|
|
To run a development server
|
|
|
|
|
|
|
|
```sh
|
|
|
|
npm run dev
|
|
|
|
```
|
|
|
|
|
|
|
|
The open either
|
|
|
|
[http://localhost:8080/apple2js.html](http://localhost:8080/apple2js.html) or
|
|
|
|
[http://localhost:8080/apple2jse.html](http://localhost:8080/apple2jse.html)
|
|
|
|
|
|
|
|
To build a static distribution into `dist`
|
|
|
|
|
|
|
|
```sh
|
|
|
|
npm run build
|
|
|
|
```
|
|
|
|
|
|
|
|
To add additional disk images, use
|
|
|
|
|
|
|
|
```sh
|
2019-03-04 20:02:54 -08:00
|
|
|
./bin/dsk2json -c Category -n Name path/to/image.dsk > json/disks/image.json
|
2019-03-04 19:55:35 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
then
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./bin/index`
|
|
|
|
```
|