Diff for /gforth/code.fs between versions 1.14 and 1.15

version 1.14, 2003/03/09 15:16:46 version 1.15, 2003/03/22 10:04:06
Line 35  vocabulary assembler ( -- ) \ tools-ext Line 35  vocabulary assembler ( -- ) \ tools-ext
   
 : (;code) ( -- ) \ gforth  : (;code) ( -- ) \ gforth
     \ execution semantics of @code{;code}      \ execution semantics of @code{;code}
     r> lastxt code-address! ;      r> latestxt code-address! ;
   
 :noname ( -- colon-sys )  :noname ( -- colon-sys )
     align here lastxt code-address!      align here latestxt code-address!
     defstart init-asm ;      defstart init-asm ;
 :noname ( colon-sys1 -- colon-sys2 )    \ tools-ext     semicolon-code  :noname ( colon-sys1 -- colon-sys2 )    \ tools-ext     semicolon-code
     ( create the [;code] part of a low level defining word )      ( create the [;code] part of a low level defining word )
Line 48  interpret/compile: ;code ( compilation. Line 48  interpret/compile: ;code ( compilation.
   
 : end-code ( colon-sys -- )     \ gforth        end_code  : end-code ( colon-sys -- )     \ gforth        end_code
     ( end a code definition )      ( end a code definition )
     lastxt here over - flush-icache      latestxt here over - flush-icache
     previous ?struc reveal ;      previous ?struc reveal ;
   

Removed from v.1.14  
changed lines
  Added in v.1.15


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