aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/global.cc
diff options
context:
space:
mode:
authorMaciej Kurc <mkurc@antmicro.com>2022-03-11 16:05:37 +0100
committerMaciej Kurc <mkurc@antmicro.com>2022-03-16 09:20:15 +0100
commit43861c0ee298c4d2a5cc89a42e816299c7f86138 (patch)
tree4555ccf228f5c3a486dcddd302b222dc1fed2f49 /nexus/global.cc
parent74783c0c0951b84e22d6d9e1b578694e77d7cfb4 (diff)
downloadnextpnr-43861c0ee298c4d2a5cc89a42e816299c7f86138.tar.gz
nextpnr-43861c0ee298c4d2a5cc89a42e816299c7f86138.tar.bz2
nextpnr-43861c0ee298c4d2a5cc89a42e816299c7f86138.zip
nexus: Added support for the DCS Bel
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
Diffstat (limited to 'nexus/global.cc')
-rw-r--r--nexus/global.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexus/global.cc b/nexus/global.cc
index 31bf0a6b..37629f64 100644
--- a/nexus/global.cc
+++ b/nexus/global.cc
@@ -193,7 +193,7 @@ struct NexusGlobalRouter
CellInfo *drv = ni->driver.cell;
if (drv == nullptr)
continue;
- if (drv->type == id_DCC) {
+ if (drv->type == id_DCC || drv->type == id_DCS) {
route_clk_net(ni);
continue;
}