Diff for /gforth/Attic/32bit.h between versions 1.1 and 1.2

version 1.1, 1994/12/12 17:10:25 version 1.2, 1994/12/14 16:15:23
Line 22  typedef double DFloat; Line 22  typedef double DFloat;
 /* the IEEE single precision type */  /* the IEEE single precision type */
 typedef float SFloat;  typedef float SFloat;
   
   #ifndef USE_FTOS
   #ifndef USE_NO_FTOS
   /* keep top of FP stack in register. Since most processors have FP
      registers and they are hardly used in gforth, this is usually a
      good idea.  The 88100 has no separate FP regs, but many general
      purpose regs, so it should be ok */
   #define USE_FTOS
   #endif
   #endif
   /* I don't do the same for the data stack (i.e. USE_TOS), since this
      loses on processors with few registers. USE_TOS might be defined in
      the processor-specific files */
   
 #ifdef DIRECT_THREADED  #ifdef DIRECT_THREADED
 /* If you want direct threading, write a .h file for your processor! */  /* If you want direct threading, write a .h file for your processor! */
 /* We could put some stuff here that causes a compile error, but then  /* We could put some stuff here that causes a compile error, but then

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


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