clarify, comments
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 14 May 2021 17:50:08 +0000 (18:50 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 14 May 2021 17:50:08 +0000 (18:50 +0100)
src/openpower/decoder/helpers.py

index de5eb92815bc2c258d6a62e3fff6bd7ec9535f84..e73c8371bf9eb148657bcb74fcd25ae9318a0cca 100644 (file)
@@ -216,6 +216,9 @@ def SINGLE(FRS):
 
     return WORD
 
+# XXX NOTE: these are very quick hacked functions for utterly basic
+# FP support
+
 def fp64toselectable(frt):
     """convert FP number to 64 bit SelectableInt
     """
@@ -245,7 +248,7 @@ def FPMUL(FRA, FRB):
 def FPDIV(FRA, FRB):
     result = float(FRA) / float(FRB)
     cvt = fp64toselectable(result)
-    print ("FPMUL", FRA, FRB, result, cvt)
+    print ("FPDIV", FRA, FRB, result, cvt)
 
 
 # For these tests I tried to find power instructions that would let me