]> Shamusworld >> Repos - rmac/commitdiff
One more minor fix: add back FP values for 56001 in d_dc.
authorShamus Hammons <jlhamm@acm.org>
Thu, 8 Aug 2019 02:15:19 +0000 (21:15 -0500)
committerShamus Hammons <jlhamm@acm.org>
Thu, 8 Aug 2019 02:15:19 +0000 (21:15 -0500)
direct.c
fltpoint.c
fltpoint.h

index 32e5dd19233c679bab7845f0f6a41f51bc030452..1864b86e266142964f630166ca37390a48a40d39 100644 (file)
--- a/direct.c
+++ b/direct.c
@@ -1191,28 +1191,7 @@ int d_dc(WORD siz)
                                        if (eattr & FLOAT)
                                        {
                                                double fval = *(double *)&eval;
-
-                                               if (fval >= 1)
-                                               {
-                                                       warn("value clamped to +1.");
-                                                       eval = 0x7fffff;
-                                               }
-                                               else if (fval <= -1)
-                                               {
-                                                       warn("value clamped to -1.");
-                                                       eval = 0x800000;
-                                               }
-                                               else
-                                               {
-                                                       // Convert fraction to 24 bits fixed point with sign and rounding
-                                                       // Yeah, that cast to int32_t has to be there because casting
-                                                       // a float to unsigned int is "undefined" according to the C
-                                                       // standard. Which most compilers seem to do the sensible thing
-                                                       // and just cast the f**king value properly, except gcc 4.x.x
-                                                       // for arm (tested on raspbian).
-                                                       // Thanks, C and gcc! Thanks for making me waste a few hours \o/
-                                                       eval = 0;//!!! FIX !!! (uint32_t)(int32_t)round(fval*(1 << 23));
-                                               }
+                                               eval = DoubleToDSPFloat(fval);
                                        }
                                        else
                                        {
@@ -1227,10 +1206,11 @@ int d_dc(WORD siz)
                        else
                        {
                                // In L: we deposit stuff to both X: and Y: instead
-                               // We will be a bit lazy and require that there is a 2nd value in the same source line.
-                               // (Motorola's assembler can parse 12-digit hex values, which we can't do at the moment)
-                               // This of course requires to parse 2 values in one pass.
-                               // If there isn't another value in this line, assume X: value is 0.
+                               // We will be a bit lazy and require that there is a 2nd value
+                               // in the same source line. (Motorola's assembler can parse
+                               // 12-digit hex values, which we can't do at the moment) This
+                               // of course requires to parse 2 values in one pass. If there
+                               // isn't another value in this line, assume X: value is 0.
                                int secondword = 0;
                                uint32_t evaly;
 l_parse_loop:
@@ -1245,27 +1225,7 @@ l_parse_loop:
                                        if (eattr & FLOAT)
                                        {
                                                float fval = *(float *)&eval;
-                                               if (fval >= 1)
-                                               {
-                                                       warn("value clamped to +1.");
-                                                       eval = 0x7fffff;
-                                               }
-                                               else if (fval <= -1)
-                                               {
-                                                       warn("value clamped to -1.");
-                                                       eval = 0x800000;
-                                               }
-                                               else
-                                               {
-                                                       // Convert fraction to 24 bits fixed point with sign and rounding
-                                                       // Yeah, that cast to int32_t has to be there because casting
-                                                       // a float to unsigned int is "undefined" according to the C
-                                                       // standard. Which most compilers seem to do the sensible thing
-                                                       // and just cast the f**king value properly, except gcc 4.x.x
-                                                       // for arm (tested on raspbian).
-                                                       // Thanks, C and gcc! Thanks for making me waste a few hours \o/
-                                                       eval = 0;//!!! FIX !!! (uint32_t)(int32_t)round(fval*(1 << 23));
-                                               }
+                                               eval = DoubleToDSPFloat(fval);
                                        }
                                        else
                                        {
@@ -1305,6 +1265,7 @@ l_parse_loop:
                                }
 
                        }
+
                        goto comma;
                }
 
index 8739e88c1500d73397e6974df8c506377ee2e91a..2205a79f4c0d8d5a30d20216b8f08d17d84c7808 100644 (file)
@@ -15,6 +15,7 @@
 #include <float.h>
 #include <math.h>
 #include <stdio.h>
+#include "error.h"
 
 //
 // Check for IEEE-754 conformance (C99 compilers should be OK here)
@@ -171,6 +172,27 @@ void DoubleToExtended(double d, uint8_t out[])
 }
 
 
+//
+// Convert a double to a DSP56001 style fixed point float.
+// Seems to be 23 bits of float value with 1 bit (MSB) for the sign.
+//
+uint32_t DoubleToDSPFloat(double d)
+{
+       if (d >= 1)
+       {
+               warn("DSP value clamped to +1.");
+               return 0x7FFFFF;
+       }
+       else if (d <= -1)
+       {
+               warn("DSP value clamped to -1.");
+               return 0x800000;
+       }
+
+       return trunc(round(ldexp(d, 23)));
+}
+
+
 //
 // Convert a host native floating point number to a fixed point number.
 //
index 6444ed345d62644e96192cc53caf4e0379fed2d0..9704f5ee804d5dc83de1d3b316fce46ccf958783 100644 (file)
@@ -13,6 +13,7 @@
 uint32_t FloatToIEEE754(float f);
 uint64_t DoubleToIEEE754(double d);
 void DoubleToExtended(double d, uint8_t out[]);
+uint32_t DoubleToDSPFloat(double d);
 
 uint64_t DoubleToFixedPoint(double d, int intBits, int fracBits);