Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00289
/
top.v
blob: 0e868f0ffab3b506ac831cd11493f47f27ce4f4d [
file
] [
log
] [
blame
]
function
f
(
input i
);
reg
[
1
:
0
]
mem0
[
1
:
0
];
f
=
i
;
endfunction
module
top
(
in
,
out
);
input
in
;
output
out
;
assign
out
=
f
(
in
);
endmodule