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
/
xor01.vhdl
blob
41a8e252d129d13d5c49212c15561e974b634bd1
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity xor01 is
5
port (
6
o: out bit_vector(3 downto 0)
7
);
8
end entity;
9
10
architecture arch of xor01 is
11
begin
12
o <= bit_vector'("1100") xor bit_vector'("1010");
13
end architecture;