Diff for /gforth/prims2x.fs between versions 1.33 and 1.34

version 1.33, 1998/10/25 23:15:46 version 1.34, 1998/11/22 23:18:10
Line 77  skipsynclines on Line 77  skipsynclines on
 Variable flush-comment flush-comment off  Variable flush-comment flush-comment off
   
 : ?flush-comment  : ?flush-comment
  flush-comment @ 0= ?EXIT      flush-comment @ 0= ?EXIT
  f-comment 2@ nip      f-comment 2@ nip
  IF  cr f-comment 2@ 2 /string type 0 0 f-comment 2! THEN ;      IF  cr f-comment 2@ 2 /string 1-
           dup IF
               flush-comment @ 1 =
               IF    ." #ifdef HAS_" bounds ?DO  I c@ toupper emit  LOOP
               ELSE  ." has? " type ."  [IF]"  THEN  cr
           ELSE    flush-comment @ 1 = IF  ." #endif"  ELSE  ." [THEN]"  THEN
               cr  THEN
           0 0 f-comment 2! THEN ;
   
 : start ( -- addr )  : start ( -- addr )
  cookedinput @ ;   cookedinput @ ;
Line 586  set-current Line 593  set-current
    i item-name 2@ type space     i item-name 2@ type space
  item-descr +loop ;    item-descr +loop ; 
   
 : output-c ( -- )  : output-c ( -- ) 1 flush-comment !
       ?flush-comment
  ." I_" c-name 2@ type ." :     /* " forth-name 2@ type ."  ( " stack-string 2@ type ."  ) */" cr   ." I_" c-name 2@ type ." :     /* " forth-name 2@ type ."  ( " stack-string 2@ type ."  ) */" cr
  ." /* " doc 2@ type ."  */" cr   ." /* " doc 2@ type ."  */" cr
  ." NAME(" [char] " emit forth-name 2@ type [char] " emit ." )" cr \ debugging   ." NAME(" [char] " emit forth-name 2@ type [char] " emit ." )" cr \ debugging
Line 644  set-current Line 652  set-current
     ." }" cr      ." }" cr
     cr ;      cr ;
   
 : output-label ( -- )  : output-label ( -- )  1 flush-comment !
     ." (Label)&&I_" c-name 2@ type ." ," cr ;      ?flush-comment
       ." [" -2 primitive-number @ - 0 .r ." ] "
       ." (Label)&&I_" c-name 2@ type ." ," cr
       -1 primitive-number +! ;
   
 : output-alias ( -- )  flush-comment on  : output-alias ( -- )  flush-comment on
  ?flush-comment      ?flush-comment
  primitive-number @ . ." alias " forth-name 2@ type cr      primitive-number @ . ." alias " forth-name 2@ type cr
  -1 primitive-number +! ;      -1 primitive-number +! ;
   
 : output-forth ( -- )  flush-comment on  : output-forth ( -- )  flush-comment on
     ?flush-comment      ?flush-comment

Removed from v.1.33  
changed lines
  Added in v.1.34


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>