Diff for /gforth/Attic/forth.h between versions 1.14 and 1.17

version 1.14, 1995/02/23 20:17:19 version 1.17, 1995/10/12 20:43:24
Line 13  typedef void *Label; Line 13  typedef void *Label;
 #define DOVAR   2  #define DOVAR   2
 #define DOUSER  3  #define DOUSER  3
 #define DODEFER 4  #define DODEFER 4
 #define DOSTRUC 5  #define DOFIELD 5
 #define DODOES  6  #define DODOES  6
 #define DOESJUMP        7  #define DOESJUMP        7
   
Line 74  Label *engine(Xt *ip, Cell *sp, Cell *rp Line 74  Label *engine(Xt *ip, Cell *sp, Cell *rp
   
 #define CF_NIL  -1  #define CF_NIL  -1
   
 #ifndef CACHE_FLUSH  #ifndef FLUSH_ICACHE
 #       define CACHE_FLUSH(addr,size)  #warning flush-icache probably will not work (see manual)
   #       define FLUSH_ICACHE(addr,size)
   #endif
   
   #ifdef DIRECT_THREADED
   #define CACHE_FLUSH(addr,size) FLUSH_ICACHE(addr,size)
   #else
   #define CACHE_FLUSH(addr,size)
 #endif  #endif

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


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