URL
https://opencores.org/ocsvn/fpuvhdl/fpuvhdl/trunk
Subversion Repositories fpuvhdl
[/] [fpuvhdl/] [trunk/] [fpuvhdl/] [common/] [fpnormalize_fpnormalize.vhd] - Rev 6
Go to most recent revision | Compare with Previous | Blame | View Log
-- -- VHDL Architecture HAVOC.FPnormalize.FPnormalize -- -- Created: -- by - Guillermo -- at - ITESM, 10:51:00 07/16/03 -- -- Generated by Mentor Graphics' HDL Designer(TM) 2002.1b (Build 7) -- -- hds interface_start LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.std_logic_arith.all; USE ieee.std_logic_unsigned.all; ENTITY FPnormalize IS GENERIC( SIG_width : integer := 28 ); PORT( SIG_in : IN std_logic_vector (SIG_width-1 DOWNTO 0); EXP_in : IN std_logic_vector (7 DOWNTO 0); SIG_out : OUT std_logic_vector (SIG_width-1 DOWNTO 0); EXP_out : OUT std_logic_vector (7 DOWNTO 0) ); -- Declarations END FPnormalize ; -- hds interface_end ARCHITECTURE FPnormalize OF FPnormalize IS BEGIN PROCESS(SIG_in, EXP_in) BEGIN IF (SIG_in( SIG_width-1 )='1') THEN SIG_out <= '0' & SIG_in(SIG_width-1 DOWNTO 2) & (SIG_in(1) AND SIG_in(0)); EXP_out <= EXP_in + 1; ELSE SIG_out <= SIG_in; EXP_out <= EXP_in; END IF; END PROCESS; END FPnormalize;
Go to most recent revision | Compare with Previous | Blame | View Log