Skip to content

Latest commit

 

History

History

src

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Title       : Readme
-- Design      : FP32 Logic
-- Author      : Kapitanov Alexander
-- Company     : 
-- E-mail      : [email protected]
--
-- Description : Floating point FP32 (same as IEEE-754 w/ some diffs); 
--	 Supported families: 6/7 series, Ultrascale, US .
--	 Source files: VHDL
--
--   FP WORD BIT FIELD:
--    ___________________
--   |     |      |      |
--   | exp | sign | mant |
--   |_____|______|______|
--
-- 	   [8]   [1]   [24 1]
-- 	 
--
--	 !! Math expression: !! 
--   A = (-1)^sign(A) * 2^(exp(A)-63) * mant(A)

-- Component list:
--   > fp32_fix2float  - convert data from INT32 to FP32.
--   > fp32_float2fix  - convert data from FP32  to INT32.
--   > fp32_addsub_one - floating point adder / substractor.
--   > fp32_addsub_dbl - floating point adder & substractor.
--   > fp32_mult       - floating point multiplier.
--
--   > rtl_dsp48_25x25 - int multiplier 25x25 based on DSP48.
--
--
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------