1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
library ieee; use ieee.std_logic_arith.all; entity repro_arith is end repro_arith; architecture behav of repro_arith is signal s : unsigned (7 downto 0) := x"00"; begin process begin s <= s + 1; wait for 1 ns; end process; end behav;