summaryrefslogtreecommitdiff
path: root/ip/ip_fp_mul.cmp
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-10-21 15:37:45 -0600
committerAlejandro Soto <alejandro@34project.org>2023-10-21 15:37:45 -0600
commita14fc04f3b9f5bcef941ea79c794532d7ca0e7fc (patch)
tree50385f76fe3883a9052a395aa6ff71d76a85439c /ip/ip_fp_mul.cmp
parent0d3a62a498f60c4fa1941026495991da78de712d (diff)
ip: downgrade to 16-bit floats
Diffstat (limited to 'ip/ip_fp_mul.cmp')
-rw-r--r--ip/ip_fp_mul.cmp7
1 files changed, 4 insertions, 3 deletions
diff --git a/ip/ip_fp_mul.cmp b/ip/ip_fp_mul.cmp
index f2c0a07..21d4c39 100644
--- a/ip/ip_fp_mul.cmp
+++ b/ip/ip_fp_mul.cmp
@@ -2,9 +2,10 @@
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
+ 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;