From: rich Date: Fri, 7 Sep 2007 23:40:52 +0000 (+0000) Subject: Fix the flags to ADDSTORE, SUBSTORE and fix dot-quote so it works again with new... X-Git-Url: http://git.annexia.org/?p=jonesforth.git;a=commitdiff_plain;h=163b9cb735045668e51c044db38a98beddbe93f1 Fix the flags to ADDSTORE, SUBSTORE and fix dot-quote so it works again with new defn of ADDSTORE. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9385631 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +# $Id: Makefile,v 1.1 2007-09-07 23:40:52 rich Exp $ + +all: + gcc -m32 -nostdlib -static -Wl,-Ttext,0 -o jonesforth jonesforth.S + +run: + ./jonesforth \ No newline at end of file diff --git a/jonesforth.S b/jonesforth.S index 4277547..9a67b5d 100644 --- a/jonesforth.S +++ b/jonesforth.S @@ -317,13 +317,13 @@ var_\name : push %eax // push value onto stack NEXT - defcode "+!",2,ADDSTORE + defcode "+!",2,,ADDSTORE pop %ebx // address pop %eax // the amount to add addl %eax,(%ebx) // add it NEXT - defcode "-!",2,SUBSTORE + defcode "-!",2,,SUBSTORE pop %ebx // address pop %eax // the amount to subtract subl %eax,(%ebx) // add it @@ -943,7 +943,7 @@ buffer: DUP '\"' <> WHILE HERE @ !b \\ store the character in the compiled image - HERE 1 +! \\ increment HERE pointer by 1 byte + 1 HERE +! \\ increment HERE pointer by 1 byte REPEAT DROP \\ drop the double quote character at the end DUP \\ get the saved address of the length word