From 31f3bf3e719e09f2f0a83559ba25edb953d276e6 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Thu, 7 Jan 2016 21:38:41 -0800 Subject: [PATCH] Add links to acme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa33711..bbc598f 100755 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ puts("Hello, world.\n") done ``` -Three tools are required to build and run this program: **plasm**, **acme**, and **plvm**. The PLASMA compiler, **plasm**, will convert the PLASMA source code (usually with an extension of .pla) into an assembly language source file. **acme**, the portable 6502 assembler, will convert the assembly source into a binary ready for loading. To execute the module, the PLASMA portable VM, **plvm**, can load and interpret the bytecode. The same binary can be loaded onto the target platform and run there with the appropriate VM. On Linux/Unix from PLASMA/src, the steps would be entered as: +Three tools are required to build and run this program: **acme**, **plasm**, and **plvm**. **acme**, the portable 6502 assembler, can be dowloaded here: https://sourceforge.net/projects/acme-crossass/. The PLASMA compiler, **plasm**, will convert the PLASMA source code (usually with an extension of .pla) into an assembly language source file. **acme** will convert the assembly source into a binary ready for loading. To execute the module, the PLASMA portable VM, **plvm**, can load and interpret the bytecode. The same binary can be loaded onto the target platform and run there with the appropriate VM. On Linux/Unix from PLASMA/src, the steps would be entered as: ``` ./plasm -AM < hello.pla > hello.a @@ -1171,6 +1171,8 @@ Probably the most exciting development is the support for the Apple ///. PLASMA ## Links +[ACME 6502 assembler](https://sourceforge.net/projects/acme-crossass/) + [PLASMA KFEST 2015 video](https://www.youtube.com/watch?v=RrR79WVHwJo?t=11m24s) [BCPL Programming Language](http://en.wikipedia.org/wiki/BCPL)