merged with Michael Felts latest version

This commit is contained in:
ceriel
1988-07-25 10:46:15 +00:00
parent f77c35733b
commit dc85e632db
40 changed files with 124 additions and 417 deletions

View File

@@ -6,7 +6,7 @@
/* $Header$ */
/*
SEPERATE DOUBLE INTO EXPONENT AND FRACTION
SEPERATE DOUBLE INTO EXPONENT AND FRACTION (FEF 8)
*/
#include "FP_types.h"
@@ -22,16 +22,8 @@ _double s1;
EXTEND buf;
struct fef8_returns *r = (struct fef8_returns *) &s1;
#ifdef DEBUG
printf("FEF8(): ");
#endif DEBUG
extend(&s1,&buf,sizeof(_double));
r->e = buf.exp - 1;
buf.exp = 1;
compact(&buf,&r->f,sizeof(_double));
#ifdef DEBUG
printf("exponent = %3d fraction = 0x%08X%08X: ",
r->f.__double[0],r->f.__double[1]);
printf("FEF8()\n");
#endif DEBUG
}