summaryrefslogtreecommitdiff
path: root/ip/ip_fp_add.cmp
blob: b662f1dcfb76cf1bcb4cf202c980b6fb76108b6e (plain)
1
2
3
4
5
6
7
8
9
10
	component ip_fp_add is
		port (
			clk    : in  std_logic                     := 'X';             -- clk
			areset : in  std_logic                     := 'X';             -- reset
			a      : in  std_logic_vector(31 downto 0) := (others => 'X'); -- a
			b      : in  std_logic_vector(31 downto 0) := (others => 'X'); -- b
			q      : out std_logic_vector(31 downto 0)                     -- q
		);
	end component ip_fp_add;