Unverified Commit 61f5ba72 by Miodrag Milanović Committed by GitHub

Merge pull request #43 from YosysHQ/aiger_naming_fix

Fix test cases according to new naming
parents d5339b41 ab07a8d5
......@@ -22,10 +22,10 @@ module testbench;
top uut (
.clk (clk ),
.n1 (n1 ),
.n2 (n2 ),
.n3 (n3 ),
.n3_inv (n3_inv )
.__1__ (n1 ),
.__2__ (n2 ),
.__3__ (n3 ),
.__3b__ (n3_inv )
);
always @(posedge clk) begin
......
......@@ -21,8 +21,8 @@ module testbench;
top uut (
.clk (en ),
//.n1 (dinA ),
.n1_inv (doutB )
//.__1__ (dinA ),
.__1b__ (doutB )
);
always @(posedge en) begin
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment