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
/
issue1534
/
xor02.vhdl
blob
9d1c6331926e0c24e3f7e34045c27b4193546726
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity xor02 is
5
port (
6
o: out bit
7
);
8
end entity;
9
10
architecture arch of xor02 is
11
constant x: bit_vector(0 to 0) := "1";
12
constant y: bit_vector(0 to 0) := "0";
13
begin
14
o <= x(0) xor y(0);
15
end architecture;