aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mistral/delay.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/mistral/delay.cc b/mistral/delay.cc
index 98ef1be6..4d123249 100644
--- a/mistral/delay.cc
+++ b/mistral/delay.cc
@@ -235,8 +235,9 @@ DelayQuad Arch::getPipDelay(PipId pip) const
return DelayQuad{123};
case CycloneV::rnode_type_t::TCLK:
return DelayQuad{46};
+ default:
+ return DelayQuad{308};
}
- return DelayQuad{308};
}
delay_t Arch::predictDelay(BelId src_bel, IdString src_pin, BelId dst_bel, IdString dst_pin) const