From e2732629bf7e02319767bb86151ba173f2872f7c Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 12 Jan 1990 11:52:51 +0000 Subject: [PATCH] Fix for PDPFLOAT format --- mach/con_float | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mach/con_float b/mach/con_float index 2a0e07eaa..d1cb48148 100644 --- a/mach/con_float +++ b/mach/con_float @@ -103,7 +103,11 @@ float_cst(str, sz, buf) #ifdef IEEEFLOAT if (sz == 4) { #endif +#ifdef PDPFLOAT + e.flt_exp += 129; +#else e.flt_exp += 127; +#endif if (e.flt_mantissa.flt_h_32 == 0) e.flt_exp = 0; #ifdef IEEEFLOAT if (e.flt_mantissa.flt_h_32 & 0x80) { -- 2.34.1