aforth

FORTH for Linux x86-64, written in assembly.
git clone git://henryandlizzy.uk/aforth
Log | Files | Refs | README

commit 17f3aa7f100c2c6af63d08fe8d5930b7055a98fc
parent 623f587a59855fee2cb05ab172f6dfc902a94076
Author: Henry Wilson <m3henry@googlemail.com>
Date:   Sat, 17 Jun 2017 14:37:02 +0100

tick

Diffstat:
Mcompile.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compile.sh b/compile.sh @@ -1,4 +1,4 @@ #! /bin/bash -gcc -c -o obj/main.o main.s && ld -o bin/aFORTH obj/* && echo -n "Testing, 123!" | bin/aFORTH +gcc -c -o obj/main.o main.s && ld -o bin/aFORTH obj/* && echo -ne "Testing, 123! \xe2\x9c\x93" | bin/aFORTH echo "Returns:" $?