From 047078f48e027cf0966428b963b3a4e8260172c1 Mon Sep 17 00:00:00 2001 From: rich Date: Sat, 8 Sep 2007 22:51:28 +0000 Subject: [PATCH] Some doc updates. --- jonesforth.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jonesforth.S b/jonesforth.S index 2d2b09a..d86d0ec 100644 --- a/jonesforth.S +++ b/jonesforth.S @@ -1,11 +1,11 @@ /* A sometimes minimal FORTH compiler and tutorial for Linux / i386 systems. -*- asm -*- By Richard W.M. Jones http://annexia.org/forth This is PUBLIC DOMAIN (see public domain release statement below). - $Id: jonesforth.S,v 1.18 2007-09-08 22:23:16 rich Exp $ + $Id: jonesforth.S,v 1.19 2007-09-08 22:51:28 rich Exp $ gcc -m32 -nostdlib -static -Wl,-Ttext,0 -o jonesforth jonesforth.S */ - .set JONES_VERSION,18 + .set JONES_VERSION,19 /* INTRODUCTION ---------------------------------------------------------------------- @@ -1865,7 +1865,7 @@ interpret_is_lit: .data .align 4096 buffer: - // Multi-line constant gives 'Warning: unterminated string; newline inserted' messages which you can ignore + // Multi-line constant gives 'Warning: unterminated string; newline inserted' messages which you can ignore. .ascii "\ \\ Define some character constants : '\\n' 10 ; @@ -2026,7 +2026,7 @@ buffer: \\ that the input buffer where the string comes from may be overwritten by the time we \\ come round to running the function). We store the string in the compiled function \\ like this: -\\ LITSTRING, string length, string rounded up to 4 bytes, EMITSTRING, ... +\\ ..., LITSTRING, string length, string rounded up to 4 bytes, EMITSTRING, ... : .\" IMMEDIATE STATE @ \\ compiling? IF -- 1.8.3.1