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
/
concat02
/
concat01.v
blob
e19d5e654776a79d08e32d9bb1f7d1f74bf0df50
1
module
concat01
(
output
[
7
:
0
]
o
,
input
[
1
:
0
]
l_i
,
input
[
5
:
0
]
h_i
);
2
assign
o
= {
h_i
,
l_i
};
3
endmodule