diff options
Diffstat (limited to 'testsuite/synth/synth34/repro_uns.vhdl')
-rw-r--r-- | testsuite/synth/synth34/repro_uns.vhdl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/testsuite/synth/synth34/repro_uns.vhdl b/testsuite/synth/synth34/repro_uns.vhdl new file mode 100644 index 000000000..d0641d509 --- /dev/null +++ b/testsuite/synth/synth34/repro_uns.vhdl @@ -0,0 +1,44 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity sub_uns is + port ( + clk : in std_logic; + a : in unsigned(7 downto 0); + b : out unsigned(7 downto 0) + ); +end sub_uns; + +architecture rtl of sub_uns is +begin + process(clk) + begin + if rising_edge(clk) then + b <= a; + end if; + end process; +end rtl; + + +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity repro_uns is + port ( + clk : in std_logic; + a : in unsigned(7 downto 0); + b : out unsigned(7 downto 0) + ); +end repro_uns; + +architecture rtl of repro_uns is +begin + i_sub_uns : entity work.sub_uns + port map ( + clk => clk, + a => a, + b => b + ); +end rtl; |