Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
b33803e3de1b686792c09675e85fc5f919905e20
/
.
/
src
/
Testcases
/
YosysTestSuite
/
various
/
abc9.v
blob: 30ebd4e26c9fb410c5f6bcd9c235fab64efa17dd [
file
]
module
abc9_test027
(
output reg o
);
initial o
=
1
'b0;
always @*
o <= ~o;
endmodule
module abc9_test028(input i, output o);
wire w;
unknown u(~i, w);
unknown2 u2(w, o);
endmodule