Update README.md

This commit is contained in:
Russell-S-Harper 2018-08-06 22:11:51 -04:00 committed by GitHub
parent 000053a7ec
commit a1f07b12ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,10 @@
# COMMON
Advance some ideas using Steve Wozniak's SWEET16 interpreted byte-code language as inspiration. While the goal of SWEET16 was brevity, the goal of COMMON is functionality.
Advances some ideas using Steve Wozniak's SWEET16 interpreted byte-code language as inspiration. While the goal of SWEET16 was brevity, the goal of COMMON is functionality.
To build and run:
`cd common-post-process ; make ; cp common-post-process ../common ; cd ..`
`cd common ; make ; cd ..`
`cd emulator ; make ; ./emulator < ../common/system.obj`
cd common-post-process ; make ; cp common-post-process ../common ; cd ..
cd common ; make ; cd ..
cd emulator ; make ; ./emulator < ../common/system.obj
The makefiles use `re2c`, `flex`, `bison`, `gcc`, `cpp`, and `xa`.