--- gforth/intcomp.fs 1996/09/10 16:08:38 1.2 +++ gforth/intcomp.fs 1996/09/23 08:52:48 1.3 @@ -32,7 +32,7 @@ lastxt >does-code constant no-compilation-does-code constant no-interpretation-does-code -: create-interpret/compile ( -- ) +: create-interpret/compile ( "name" -- ) \ gforth 0 0 interpret/compile: here lastxt interpret/compile-comp ! no-compilation-does-code here does-code! @@ -53,22 +53,24 @@ constant no-interpretation-does-code : (interpretation>) ( -- ) lastxt interpret/compile-int r@ fix-does-code ; -: interpretation> ( -- orig colon-sys ) +: interpretation> ( compilation. -- orig colon-sys ) \ gforth POSTPONE (interpretation>) POSTPONE ahead dodoes, defstart dead-code off 0 set-locals-size-list ; immediate restrict -: ) ( -- ) lastxt interpret/compile-comp r@ fix-does-code ; -: compilation> ( -- orig colon-sys ) +: compilation> ( compilation. -- orig colon-sys ) \ gforth POSTPONE (compilation>) POSTPONE ahead dodoes, defstart dead-code off 0 set-locals-size-list POSTPONE >body ; immediate restrict -comp'