From: Ralph Ronnquist Date: Thu, 17 Jun 2021 07:14:03 +0000 (+1000) Subject: upgrade X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=433a6cc4e7fccb418345a78de099a4e15891abcf;p=rrq%2Frrqforth.git upgrade --- diff --git a/reference.html b/reference.html index c690537..9137d07 100644 --- a/reference.html +++ b/reference.html @@ -851,7 +851,9 @@ asciidoc.install(); LOAD-BUFFER-SIZE   LOAD-FILE  

MAIN-ARGS   -MALLOC  

+MALLOC   +MIN   +MAX  

NEGATE   NIP   NL   @@ -2773,6 +2775,32 @@ page" of mmap for details.

_______________________________________________________
+

+ +
+

Word: MAX

+
+
+
Data stack: ( v1 v2 -- v3 )
+
+

"MAX" is a function word that selects the greatest of v1 and v2. To +that end, the values are 64-bit signed integers.

+
+_______________________________________________________ +
+

+
+
+

Word: MIN

+
+
+
Data stack: ( v1 v2 -- v3 )
+
+

"MIN" is a function word that selects the least of v1 and v2. To that +end, the values are 64-bit signed integers.

+
+_______________________________________________________ +

@@ -3897,7 +3925,7 @@ is deepest.

diff --git a/rrqforth b/rrqforth index a6fd09c..8b71191 100755 Binary files a/rrqforth and b/rrqforth differ