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
/
issue1536
/
ent1.vhdl
blob
e3f811006376daee531886747a6387f4b1f54bcd
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity ent1 is
5
port (
6
i: in bit;
7
o: out std_ulogic
8
);
9
end entity;
10
11
architecture arch of ent1 is
12
begin
13
o <= to_stdulogic(i);
14
end architecture;