From adc50a207fb442a7b44ac76b8d04dc5477c23c8f Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 14 Nov 2018 08:46:10 +0000 Subject: Timing fixes Signed-off-by: David Shah --- common/nextpnr.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'common/nextpnr.cc') diff --git a/common/nextpnr.cc b/common/nextpnr.cc index 514017c6..b304f4f4 100644 --- a/common/nextpnr.cc +++ b/common/nextpnr.cc @@ -409,6 +409,7 @@ void Context::check() const void BaseCtx::addClock(IdString net, float freq) { + log_info(" constraining clock net '%s' to %.02f MHz\n", net.c_str(this), freq); std::unique_ptr cc(new ClockConstraint()); cc->period = getCtx()->getDelayFromNS(1000 / freq); cc->high = getCtx()->getDelayFromNS(500 / freq); -- cgit v1.2.3