3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-22 05:43:40 +00:00

Move tests/techmap/abc9 to simple_abc9

This commit is contained in:
Eddie Hung 2019-02-20 15:34:59 -08:00
parent 945bbcc298
commit 43d5471570
4 changed files with 0 additions and 23 deletions

6
tests/simple_abc9/abc9.v Normal file
View file

@ -0,0 +1,6 @@
module top(input [1:0] a, output [1:0] b, output c, output d, output e);
assign b = a;
assign c = ^a;
assign d = ~c;
assign e = d;
endmodule