aboutsummaryrefslogtreecommitdiffstats
path: root/nexus
diff options
context:
space:
mode:
authorMaciej Kurc <mkurc@antmicro.com>2022-08-31 14:31:24 +0200
committerMaciej Kurc <mkurc@antmicro.com>2022-08-31 16:19:15 +0200
commit1f1bae3e23bd3acb932d9287350ab2c38489a2f4 (patch)
tree74cd3826f2eebf5c0387afe6d1c384b852e978a8 /nexus
parent60a6e8b070081492f1df0b829123c3bf08de8566 (diff)
downloadnextpnr-1f1bae3e23bd3acb932d9287350ab2c38489a2f4.tar.gz
nextpnr-1f1bae3e23bd3acb932d9287350ab2c38489a2f4.tar.bz2
nextpnr-1f1bae3e23bd3acb932d9287350ab2c38489a2f4.zip
Code cleanup
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
Diffstat (limited to 'nexus')
-rw-r--r--nexus/arch.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/nexus/arch.cc b/nexus/arch.cc
index 70e3d38d..bc00a1e9 100644
--- a/nexus/arch.cc
+++ b/nexus/arch.cc
@@ -495,10 +495,10 @@ bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort
} else if (cell->type == id_DCC) {
if (fromPort == id_CLKI && toPort == id_CLKO) {
// TODO: Use actual DCC delays
- delay.rise.min_delay = 1000;
- delay.rise.max_delay = 1000;
- delay.fall.min_delay = 1000;
- delay.fall.max_delay = 1000;
+ delay.rise.min_delay = 1;
+ delay.rise.max_delay = 1;
+ delay.fall.min_delay = 1;
+ delay.fall.max_delay = 1;
return true;
}
}