Revert "Add -tech xilinx_static"

This reverts commit dfe9d95579.
This commit is contained in:
Eddie Hung 2019-06-10 14:34:14 -07:00
parent e1dbeb3004
commit b6a39351f4
1 changed files with 2 additions and 13 deletions

View File

@ -719,7 +719,7 @@ struct ShregmapPass : public Pass {
opts.zinit = true;
opts.tech = new ShregmapTechGreenpak4;
}
else if (tech == "xilinx_static" || tech == "xilinx_dynamic") {
else if (tech == "xilinx_dynamic") {
opts.init = true;
opts.ffcells["$_DFF_P_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["$_DFF_N_"] = make_pair(IdString("\\D"), IdString("\\Q"));
@ -727,17 +727,6 @@ struct ShregmapPass : public Pass {
opts.ffcells["$_DFFE_PN_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["$_DFFE_NP_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["$_DFFE_NN_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDRE"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDRE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDSE"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDSE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDCE"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDCE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDPE"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["FDPE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
if (tech == "xilinx_static")
opts.tech = new ShregmapTechXilinx7Dynamic(opts);
else if (tech == "xilinx_dynamic")
opts.tech = new ShregmapTechXilinx7Dynamic(opts);
} else {
argidx--;