aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ice40/cells_sim.v
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-05-31 13:03:03 -0700
committerEddie Hung <eddie@fpgeh.com>2019-05-31 13:03:03 -0700
commiteb08e71bd10004cb37c3ceab37607866d9240630 (patch)
tree21754a7525d42c3662d081c7d9b995d731fae00f /techlibs/ice40/cells_sim.v
parenta379234f56753c3d72a6966c380ac6f83fde789c (diff)
parentac2aff9e28a087a9a2697cd6ccf754af738903a7 (diff)
downloadyosys-eb08e71bd10004cb37c3ceab37607866d9240630.tar.gz
yosys-eb08e71bd10004cb37c3ceab37607866d9240630.tar.bz2
yosys-eb08e71bd10004cb37c3ceab37607866d9240630.zip
Merge branch 'xaig' into xc7mux
Diffstat (limited to 'techlibs/ice40/cells_sim.v')
-rw-r--r--techlibs/ice40/cells_sim.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/ice40/cells_sim.v b/techlibs/ice40/cells_sim.v
index c7c5ba168..b5e10fb20 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