From f96e9a6b6ef6d540661cd2b83762889f1234b828 Mon Sep 17 00:00:00 2001 From: Yonggang Wang Date: Sun, 8 Mar 2020 22:13:11 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index d962ebd..02a10cc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,17 @@ # Altair 8800 simulator. A JavaScript simulator to demonstrate the front panel operations of Altair 8800. + +## Usage + +Simply open index.html in browser, or copy the entire dir to your web server's root dir. + +## References + + * [Wikipedia: Altair 8800](https://en.wikipedia.org/wiki/Altair_8800) + * [Wikipedia: Intel 8080 CPU](https://en.wikipedia.org/wiki/Intel_8080) + * [Intel 8080 instruction set](http://www.classiccmp.org/dunfield/r/8080.txt) + * [Original Altair 8800 manuals](https://altairclone.com/altair_manuals.html) + * [Altair 8800 Operator's Manual](https://altairclone.com/downloads/manuals/Altair%208800%20Operator's%20Manual.pdf) + * [Intel 8080 Assembly Language Programming Manual](http://www.classiccmp.org/dunfield/r/8080asm.pdf) + * [Another Altair 8800 simulator](https://s2js.com/altair/) From fc1028346705285fbab33d7463b7c8e8902b216a Mon Sep 17 00:00:00 2001 From: Yonggang Wang Date: Sun, 8 Mar 2020 22:20:29 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 02a10cc..de1af70 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,11 @@ Simply open index.html in browser, or copy the entire dir to your web server's r * [Altair 8800 Operator's Manual](https://altairclone.com/downloads/manuals/Altair%208800%20Operator's%20Manual.pdf) * [Intel 8080 Assembly Language Programming Manual](http://www.classiccmp.org/dunfield/r/8080asm.pdf) * [Another Altair 8800 simulator](https://s2js.com/altair/) + +## Acknowledgements + +I use (https://github.com/maly/8080js) to execute Intel 8080 instruments. + +The Quick Tutoral in the simulator UI refers to an example program got from the original [Altair 8800 Operator's Manual](https://altairclone.com/downloads/manuals/Altair%208800%20Operator's%20Manual.pdf). + +The interaction design took [another Altair 8800 simulator](https://s2js.com/altair/) as a reference.