Diff for /gforth/Attic/primitives between versions 1.58 and 1.59

version 1.58, 1996/08/21 14:58:43 version 1.59, 1996/09/10 16:08:39
Line 1588  CACHE_FLUSH(a_addr,DOES_HANDLER_SIZE); Line 1588  CACHE_FLUSH(a_addr,DOES_HANDLER_SIZE);
 /* !! a constant or environmental query might be better */  /* !! a constant or environmental query might be better */
 n = DOES_HANDLER_SIZE;  n = DOES_HANDLER_SIZE;
   
   threading-method        -- n    gforth  threading_method
   ""0 if the engine is direct threaded.""
   #if defined(DIRECT_THREADED)
   n=0;
   #else
   n=1;
   #endif
   
 flush-icache    c_addr u --     gforth  flush_icache  flush-icache    c_addr u --     gforth  flush_icache
 ""Make sure that the instruction cache of the processor (if there is  ""Make sure that the instruction cache of the processor (if there is
 one) does not contain stale data at @var{c_addr} and @var{u} bytes  one) does not contain stale data at @var{c_addr} and @var{u} bytes

Removed from v.1.58  
changed lines
  Added in v.1.59


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