crackNum 3.12 → 3.13
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- CHANGES.md +4/−0
- crackNum.cabal +1/−1
- src/CrackNum/Main.hs +1/−1
CHANGES.md view
@@ -3,6 +3,10 @@ * Latest Hackage released version: 3.10, 2024-03-01 +### Version 3.13, 2024-09-23++ * Fix help text+ ### Version 3.12, 2024-04-05 * Fix hexadecimal float parsing for e4m3
crackNum.cabal view
@@ -1,6 +1,6 @@ Cabal-version : 2.2 Name : crackNum-Version : 3.12+Version : 3.13 Synopsis : Crack various integer and floating-point data formats Description : Crack IEEE-754 float formats and arbitrary sized words and integers, showing the layout. .
src/CrackNum/Main.hs view
@@ -248,7 +248,7 @@ , " " ++ pn ++ " -f3+4 0b0111001 -- decode as float with 3 bits exponent, 4 bits significand" , " " ++ pn ++ " -fbp 0x000F -- decode as a brain-precision float" , " " ++ pn ++ " -fdp 0x8000000000000000 -- decode as a double-precision float"- , " " ++ pn ++ " -fhp 0x8000000000000000 -- decode as a double-precision float"+ , " " ++ pn ++ " -fhp 0x8000 -- decode as a half-precision float" , " " ++ pn ++ " -l4 -fhp 64\\'hbdffaaffdc71fc60 -- decode as half-precision float over 4 lanes using verilog notation" , "" , " Notes:"