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
/
dff04
/
dff01.v
blob
aa3a44b7658ed9e88ca6ce801390300eeec330f4
1
module
dff01
(
input
clk
,
2
input
en
,
3
input
[
7
:
0
]
din
,
4
output reg
[
7
:
0
]
dout
);
5
always
@(
posedge
clk
)
6
if
(
en
)
7
dout
<=
din
;
8
endmodule