Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1c596881d1a7fc4baa7972b1f16b2e3d461aa200
/
.
/
src
/
Testcases
/
Yosys
/
various
/
abc9.v
blob: a08b613a8ce6c694a9ad7a03a3bbccfa08a84c34 [
file
] [
log
] [
blame
]
module
abc9_test027
(
output reg o
);
initial o
=
1
'b0;
always @*
o <= ~o;
endmodule
module abc9_test028(input i, output o);
unknown u(~i, o);
endmodule