diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-10-20 22:59:27 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-10-20 23:10:55 -0600 |
| commit | 1b5eeb9a949272232ff543f684c7be62d31d0d40 (patch) | |
| tree | 67e4e7b20f0d38b675058bbb32690ab782369d68 /ip/ip_fp_add.cmp | |
| parent | 8eba2720083d49bf6550efb35f32c8fbdd2ef975 (diff) | |
ip: add ip_fp_add, ip_fp_mul
Diffstat (limited to 'ip/ip_fp_add.cmp')
| -rw-r--r-- | ip/ip_fp_add.cmp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ip/ip_fp_add.cmp b/ip/ip_fp_add.cmp new file mode 100644 index 0000000..b662f1d --- /dev/null +++ b/ip/ip_fp_add.cmp @@ -0,0 +1,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; + |
