Make abc9 test a bit more interesting

This commit is contained in:
Eddie Hung 2019-08-30 20:31:53 -07:00
parent e9bb252e77
commit 4290548de3
1 changed files with 3 additions and 1 deletions

View File

@ -5,5 +5,7 @@ always @*
endmodule
module abc9_test028(input i, output o);
unknown u(~i, o);
wire w;
unknown u(~i, w);
unknown2 u2(w, o);
endmodule