repo.or.cz
/
ghdl-vlg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
verilog: add sv_maps iterators
[ghdl-vlg.git]
/
testsuite
/
synth
/
issue1387
/
repro1.vhdl
blob
4744a9d62e9ec7ee461d0feeee4076ad84bba9de
1
package repro1_pkg is
2
signal s : bit;
3
constant cst : natural := 5;
4
end;
5
6
use work.repro1_pkg.all;
7
8
entity repro1 is
9
port (a,b : bit;
10
c : out bit);
11
end repro1;
12
13
architecture behav of repro1 is
14
begin
15
c <= a xor b;
16
end behav;