X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/3678daaf90c4314d1475d057909ae3f44abc8934..f1994bf609c5b053c5c0d7db2062b570fa9f5ead:/fth/system.fth diff --git a/fth/system.fth b/fth/system.fth index c33f40b..21200fa 100644 --- a/fth/system.fth +++ b/fth/system.fth @@ -26,7 +26,7 @@ \ Based on HMSL Forth \ \ Author: Phil Burk -\ Copyright 1994 3DO, Phil Burk, Larry Polansky, Devid Rosenboom +\ Copyright 1994 3DO, Phil Burk, Larry Polansky, David Rosenboom \ \ The pForth software code is dedicated to the public domain, \ and any third party may reproduce, distribute and modify @@ -360,6 +360,18 @@ 2* swap ; +: D= ( xd1 xd2 -- flag ) + rot = -rot = and +; + +: D< ( d1 d2 -- flag ) + d- nip 0< +; + +: D> ( d1 d2 -- flag ) + 2swap d< +; + \ define some useful constants ------------------------------ 1 0= constant FALSE 0 0= constant TRUE @@ -717,9 +729,11 @@ ustack 0stackp variable TRACE-INCLUDE : INCLUDE.MARK.START ( c-addr u -- , mark start of include for FILE?) - " ::::" pad $MOVE - pad $APPEND - pad ['] noop (:) + dup 5 + allocate throw >r + " ::::" r@ $move + r@ $append + r@ ['] noop (:) + r> free throw ; : INCLUDE.MARK.END ( -- , mark end of include )