Commit ab07a8d5 by Miodrag Milanovic

Fix test cases according to new naming

parent d5339b41
...@@ -22,10 +22,10 @@ module testbench; ...@@ -22,10 +22,10 @@ module testbench;
top uut ( top uut (
.clk (clk ), .clk (clk ),
.n1 (n1 ), .__1__ (n1 ),
.n2 (n2 ), .__2__ (n2 ),
.n3 (n3 ), .__3__ (n3 ),
.n3_inv (n3_inv ) .__3b__ (n3_inv )
); );
always @(posedge clk) begin always @(posedge clk) begin
......
...@@ -21,8 +21,8 @@ module testbench; ...@@ -21,8 +21,8 @@ module testbench;
top uut ( top uut (
.clk (en ), .clk (en ),
//.n1 (dinA ), //.__1__ (dinA ),
.n1_inv (doutB ) .__1b__ (doutB )
); );
always @(posedge en) begin 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