From: Eddie Hung Date: Fri, 22 Nov 2019 00:33:20 +0000 (-0800) Subject: Another sloppy mistake! X-Git-Tag: working-ls180~881^2^2~145^2^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6841e3b1c2b2bc3124810f3a8f96ed00a96e954c;p=yosys.git Another sloppy mistake! --- diff --git a/tests/various/abc9.v b/tests/various/abc9.v index 85828bf30..f0b3f6837 100644 --- a/tests/various/abc9.v +++ b/tests/various/abc9.v @@ -13,6 +13,6 @@ endmodule module abc9_test032(input clk, d, r, output reg q); initial q = 1'b0; always @(negedge clk or negedge r) - if (r) q <= 1'b0; + if (!r) q <= 1'b0; else q <= d; endmodule