mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-29 01:24:25 +02:00
Map to $_FF_ instead of $_DFF_P_ to prevent recursion issues
This commit is contained in:
@@ -29,7 +29,7 @@ module \$_DFF_P_ (input D, C, output Q);
|
||||
`else
|
||||
wire Q_next;
|
||||
\$__ABC_FDRE #(/*.INIT(|0)*/) _TECHMAP_REPLACE_ (.D(D), .Q(Q_next), .Q_past(Q), .C(C), .CE(1'b1), .R(1'b0));
|
||||
\$_DFF_P_ abc_dff (.D(Q_next), .Q(Q), .C(C));
|
||||
\$_FF_ abc_dff (.D(Q_next), .Q(Q));
|
||||
`endif
|
||||
endmodule
|
||||
|
||||
|
||||
@@ -277,7 +277,7 @@ struct SynthXilinxPass : public ScriptPass
|
||||
if (check_label("map_cells")) {
|
||||
run("techmap -map +/techmap.v -map +/xilinx/cells_map.v");
|
||||
if (abc == "abc9")
|
||||
run("techmap -max_iter 1 -D _ABC -map +/xilinx/ff_map.v");
|
||||
run("techmap -D _ABC -map +/xilinx/ff_map.v t:$_DFF*");
|
||||
run("clean");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user