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

version 1.2, 1994/05/05 15:46:41 version 1.5, 1994/11/30 17:46:04
Line 1 Line 1
 /*  /*
   $Id$  
   Copyright 1992 by the ANSI figForth Development Group    Copyright 1992 by the ANSI figForth Development Group
   
   This is the machine-specific part for a Decstation running Ultrix    This is the machine-specific part for a Decstation running Ultrix
 */  */
   /* cache flush stuff */
   
   #ifdef DIRECT_THREADED
   
   #include <mips/cachectl.h>
   
   #define CACHE_FLUSH(addr,size) \
                                   cacheflush((char *)(addr), (int)(size), BCACHE)
   
   #endif
   
 /* Cell and UCell must be the same size as a pointer */  /* Cell and UCell must be the same size as a pointer */
 typedef long Cell;  typedef long Cell;
Line 102  typedef float SFloat; Line 110  typedef float SFloat;
   
 #endif  #endif
   
   #ifdef FORCE_REG
   #define IPREG asm("$16")
   #define SPREG asm("$17")
   #define RPREG asm("$18")
   #define LPREG asm("$19")
   #define CFAREG asm("$20")
   #define TOSREG asm("$21")
   #endif /* FORCE_REG */

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


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