mirror of https://github.com/YosysHQ/nextpnr.git
Make it more as in PR #1513
This commit is contained in:
parent
25cbe7bfd5
commit
c80b413277
|
|
@ -326,11 +326,9 @@ void GateMatePacker::pack_io_sel()
|
||||||
cells.push_back(&ci);
|
cells.push_back(&ci);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::array<std::pair<CellInfo*,CellInfo*>, 9>> ddr(uarch->dies); // for each bank
|
std::vector<std::array<std::pair<CellInfo *, CellInfo *>, 9>> ddr(
|
||||||
for (int i = 0; i < uarch->dies; ++i)
|
uarch->dies, std::array<std::pair<CellInfo *, CellInfo *>, 9>{}
|
||||||
for (int j = 0; j < 9; ++j)
|
);
|
||||||
ddr[i][j] = {nullptr, nullptr};
|
|
||||||
|
|
||||||
auto set_out_clk = [&](CellInfo *cell, CellInfo *target) -> bool {
|
auto set_out_clk = [&](CellInfo *cell, CellInfo *target) -> bool {
|
||||||
NetInfo *clk_net = cell->getPort(id_CLK);
|
NetInfo *clk_net = cell->getPort(id_CLK);
|
||||||
if (clk_net) {
|
if (clk_net) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue