From: Eddie Hung Date: Tue, 23 Apr 2019 20:42:06 +0000 (-0700) Subject: Use nonblocking X-Git-Tag: working-ls180~1237^2~162 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=91c3afcab723d85d3c6931561cb13ad7b70e7e5c;p=yosys.git Use nonblocking --- diff --git a/techlibs/ice40/cells_sim.v b/techlibs/ice40/cells_sim.v index 40e54f9f0..40972766d 100644 --- a/techlibs/ice40/cells_sim.v +++ b/techlibs/ice40/cells_sim.v @@ -149,7 +149,7 @@ module SB_DFF ((* abc_flop_q *) output `SB_DFF_REG, input C, (* abc_flop_d *) in always @(posedge C) Q <= D; `else - always @* Q = D; + always @* Q <= D; `endif endmodule