Commit b2fd9c56 by Miodrag Milanovic

fix zinit test

parent 222a2639
...@@ -197,8 +197,6 @@ else ...@@ -197,8 +197,6 @@ else
elif [ "$1" = "tribuf_logic" ]; then elif [ "$1" = "tribuf_logic" ]; then
expected_string="cell \$tribuf" expected_string="cell \$tribuf"
expected="0" expected="0"
elif [ "$1" = "zinit" ]; then
expected_string="cell \$_NOT_ \$auto\$zinit"
fi fi
if test -f "result.log"; then if test -f "result.log"; then
if grep "$expected_string" result.log; then if grep "$expected_string" result.log; then
......
...@@ -65,7 +65,7 @@ endmodule ...@@ -65,7 +65,7 @@ endmodule
module ndffnsnr module ndffnsnr
( input d, clk, pre, clr, output reg q ); ( input d, clk, pre, clr, output reg q );
initial begin initial begin
q = 1; q = 1'bx;
end end
always @( negedge clk, negedge pre, negedge clr ) always @( negedge clk, negedge pre, negedge clr )
if ( !clr ) if ( !clr )
......
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