3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-25 20:46:04 +00:00
This commit is contained in:
Eddie Hung 2019-07-02 19:13:40 -07:00
parent 0447794c51
commit 9c556e3c02
2 changed files with 14 additions and 0 deletions

View file

@ -3,3 +3,7 @@ initial o = 1'b0;
always @*
o <= ~o;
endmodule
module abc9_test028(input i, output o);
unknown u(~i, o);
endmodule