mirror of https://github.com/YosysHQ/yosys.git
Use nonblocking
This commit is contained in:
parent
4df4a97ffa
commit
91c3afcab7
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue