mirror of https://github.com/YosysHQ/nextpnr.git
ecp5: Fix case of one net driving multiple DCSs
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
f688fc080c
commit
ae7843fbf0
|
|
@ -468,7 +468,7 @@ class Ecp5GlobalRouter
|
|||
dcc->ports[id_CLKO].net = glbptr;
|
||||
std::vector<PortRef> keep_users;
|
||||
for (auto user : net->users) {
|
||||
if (dcs_cell != nullptr && user.cell != dcs_cell) {
|
||||
if (dcs_cell != nullptr && user.cell->type != id_DCSC) {
|
||||
// DCS DCC insertion mode
|
||||
keep_users.push_back(user);
|
||||
} else if (user.port == id_CLKFB) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue