Diff for /gforth/engine/forth.h between versions 1.109 and 1.110

version 1.109, 2010/04/17 21:32:49 version 1.110, 2010/04/25 18:27:10
Line 100 Line 100
 #define DOFIELD 5  #define DOFIELD 5
 #define DOVAL   6  #define DOVAL   6
 #define DODOES  7  #define DODOES  7
 #define DOESJUMP        8  #define DOABICODE       8
 #define DOABICODE       9  #define DOSEMIABICODE   9
 #define DOER_MAX        9  #define DOER_MAX        9
   
 /* the size of the DOESJUMP, which resides between DOES> and the does-code */  
 #define DOES_HANDLER_SIZE       (2*sizeof(Cell))  
   
 #include "machine.h"  #include "machine.h"
   
 /* C interface data types */  /* C interface data types */
Line 384  Label *gforth_engine(Xt *ip, Cell *sp, C Line 381  Label *gforth_engine(Xt *ip, Cell *sp, C
 Label *gforth_engine2(Xt *ip, Cell *sp, Cell *rp0, Float *fp, Address lp sr_proto);  Label *gforth_engine2(Xt *ip, Cell *sp, Cell *rp0, Float *fp, Address lp sr_proto);
 Label *gforth_engine3(Xt *ip, Cell *sp, Cell *rp0, Float *fp, Address lp sr_proto);  Label *gforth_engine3(Xt *ip, Cell *sp, Cell *rp0, Float *fp, Address lp sr_proto);
   
 /* for ABI-CODE */  /* for ABI-CODE and ;ABI-CODE */
 typedef Cell *abifunc(Cell *sp, Float **fpp);  typedef Cell *abifunc(Cell *sp, Float **fpp);
   typedef Cell *semiabifunc(Cell *sp, Float **fpp, Address body);
   
 /* engine/prim support routines */  /* engine/prim support routines */
 Address gforth_alloc(Cell size);  Address gforth_alloc(Cell size);

Removed from v.1.109  
changed lines
  Added in v.1.110


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