aboutsummaryrefslogtreecommitdiffstats
path: root/tests/verilog/func_tern_hint.ys
blob: ab8a1e032eda3b6622ef7dd1e389e59e51b07174 (plain)
1
2
3
4
'#n12'>12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
library ieee;
use ieee.std_logic_1164.all;

library ieee;
use ieee.numeric_std.all;

entity mul_222 is
	port (
		output : out std_logic_vector(40 downto 0);
		in_b : in  std_logic_vector(31 downto 0);
		in_a : in  std_logic_vector(31 downto 0)
	);
end mul_222;

architecture augh of mul_222 is

	signal tmp_res : signed(63 downto 0);

begin

	-- The actual multiplication
	tmp_res <= signed(in_a) * signed(in_b);

	-- Set the output
	output <= std_logic_vector(tmp_res(40 downto 0));

end architecture;