Diff for /gforth/Attic/forth.h between versions 1.2 and 1.5

version 1.2, 1994/05/05 15:46:44 version 1.5, 1994/05/18 17:29:53
Line 21  typedef void *Label; Line 21  typedef void *Label;
 /* Forth data types */  /* Forth data types */
 typedef int Bool;  typedef int Bool;
 #define FLAG(b) (-(b))  #define FLAG(b) (-(b))
   #define FILEIO(error)   (FLAG(error) & -37)
   #define FILEEXIST(error)        (FLAG(error) & -38)
   
 #define F_TRUE (FLAG(0==0))  #define F_TRUE (FLAG(0==0))
 #define F_FALSE (FLAG(0!=0))  #define F_FALSE (FLAG(0!=0))
Line 35  typedef Label Xt; Line 37  typedef Label Xt;
 typedef Label *Xt;  typedef Label *Xt;
 #endif  #endif
   
 Label *engine(Xt *ip, Cell *sp, Cell *rp, Float *fp);  Label *engine(Xt *ip, Cell *sp, Cell *rp, Float *fp, Address lp);
   
 #ifndef DIRECT_THREADED  #ifndef DIRECT_THREADED
 /* i.e. indirect threaded */  /* i.e. indirect threaded */
Line 62  Label *engine(Xt *ip, Cell *sp, Cell *rp Line 64  Label *engine(Xt *ip, Cell *sp, Cell *rp
 #endif  #endif
   
 #ifdef DEBUG  #ifdef DEBUG
 #       define  NAME(string)    printf("%08x: %s\n",(int)ip,string);  #       define  NAME(string)    printf("%08x: "string"\n",(int)ip);
 #else  #else
 #       define  NAME(string)  #       define  NAME(string)
 #endif  #endif
Line 70  Label *engine(Xt *ip, Cell *sp, Cell *rp Line 72  Label *engine(Xt *ip, Cell *sp, Cell *rp
 #define CF(const)       (-const-2)  #define CF(const)       (-const-2)
   
 #define CF_NIL  -1  #define CF_NIL  -1
   
   #ifndef CACHE_FLUSH
   #       define CACHE_FLUSH(addr,size)
   #endif

Removed from v.1.2  
changed lines
  Added in v.1.5


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