index
:
iCE40/yosys
master
[no description]
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
hana
/
test_simulation_always_15_test.v
blob: 5c5fed5b65488665fcefeb75170c3d933a608351 (
plain
)
1
2
3
4
5
module
test
(
input
[
1
:
0
]
in
,
output
reg
[
1
:
0
]
out
);
always
@(
in
)
out
=
in
;
endmodule