mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-08 10:25:19 +00:00
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 a new issue