Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_01193
/
top.v
blob: 25fc6e76494237a26ad42b7d0de8aa4e38b18f27 [
file
] [
log
] [
blame
]
module
test
(
input e
,
a
,
output reg b
);
always_comb
if
(
e
)
b
=
a
;
endmodule