blob: f951108bfe8567ccc89731e2d6fffe16f144ebc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
library ieee;
use ieee.std_logic_1164.all;
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;
|