3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-07 19:51:23 +00:00

Merge branch 'xaig' into xc7mux

This commit is contained in:
Eddie Hung 2019-05-31 13:03:03 -07:00
commit eb08e71bd1
5 changed files with 99 additions and 15 deletions

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)
Q <= D;
`else
always @* Q = D;
always @* Q <= D;
`endif
endmodule