Altera_Forum
Honored Contributor
14 years agoFPGA square root display
I have written the following program to determine the square root of a number but i m getting difficulty how to display the result ? I have used the mega functions to find the square but unable to proceed as to how to go about displaying the decimal number say square root( 2) = 1.414 on the DE1 board .
will be really thankful if some one could help ! library ieee; USE ieee.std_logic_1164.all; Entity squareroot is port ( clock_50 :in std_logic ; SW : in std_logic vector (9 downto 0); HEX3, HEX2,HEX1,HEX0 : out std_logic vector (6 downto 0); End squareroot; architecture topelevel of squareroot is Component integertoFloatingpoint IS PORT ( clock : IN STD_LOGIC ; dataa : IN STD_LOGIC_VECTOR (31 DOWNTO 0); result : OUT STD_LOGIC_VECTOR (31 downto 0 ); END integertoFloatingpoint; Component squarerootTofloatingpoint IS PORT ( clock : IN STD_LOGIC ; data : IN STD_LOGIC_VECTOR (31 DOWNTO 0); result : OUT STD_LOGIC_VECTOR (31 DOWNTO 0) ); END squarerootTofloatingpoint; Component flotaingpointTofixedpoint IS PORT ( clock : IN STD_LOGIC ; dataa : IN STD_LOGIC_VECTOR (31 DOWNTO 0); result : OUT STD_LOGIC_VECTOR (31 DOWNTO 0) ); END flotaingpointTofixedpoint;