summaryrefslogtreecommitdiff
path: root/ip/ip_fp_mul.cmp
blob: f2c0a0727dd7552589f73d3e93a113d9ce854e0f (plain)
1
2
3
4
5
6
7
8
9
10
	component ip_fp_mul 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_mul;