3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-09 23:53:26 +00:00

Use nonblocking

This commit is contained in:
Eddie Hung 2019-04-23 13:42:06 -07:00
parent 4df4a97ffa
commit 91c3afcab7

View file

@ -149,7 +149,7 @@ module SB_DFF ((* abc_flop_q *) output `SB_DFF_REG, input C, (* abc_flop_d *) in
always @(posedge C) always @(posedge C)
Q <= D; Q <= D;
`else `else
always @* Q = D; always @* Q <= D;
`endif `endif
endmodule endmodule