aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/arch.cc')
-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;
}
}