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