blob: 6ff80266b699aa770c10258ea068b6b2dbe3aff7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
entity repro5 is
port (s : out bit);
end;
architecture behav of repro5 is
constant width : integer := 1;
constant zeros : bit_vector(0 to width-1) := (0 to width-1 => '0');
begin
s <= zeros(0);
end;
|