1
0
mirror of synced 2026-04-26 20:28:22 +00:00

Merge branch 'xaig' into xc7mux

This commit is contained in:
Eddie Hung
2019-05-31 13:03:03 -07:00
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

View File

@@ -294,6 +294,7 @@ struct SynthXilinxPass : public ScriptPass
else
run(abc + " -luts 2:2,3,6:5,10,20" + string(retime ? " -dff" : ""));
run("clean");
// This shregmap call infers fixed length shift registers after abc
// has performed any necessary retiming
if (!nosrl || help_mode)