3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-26 21:16:03 +00:00

Add tests/various/abc9.{v,ys} with SCC test

This commit is contained in:
Eddie Hung 2019-06-24 21:52:53 -07:00
parent cec2292b0b
commit 9dca024a30
2 changed files with 19 additions and 0 deletions

5
tests/various/abc9.v Normal file
View file

@ -0,0 +1,5 @@
module abc9_test027(output reg o);
initial o = 1'b0;
always @*
o <= ~o;
endmodule