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
/
output01
/
output01.vhdl
blob
1700bb53d62e68a8cbf0164939bfbb425e8ad505
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity output01 is
5
port (i : std_logic;
6
o : out std_logic_vector (1 downto 0));
7
end output01;
8
9
architecture behav of output01 is
10
begin
11
o (0) <= i;
12
o (1) <= not i;
13
end behav;