From 4d5434f3d2bf7db168aa43e5d943790dcbdfba74 Mon Sep 17 00:00:00 2001 From: Karol Gugala Date: Tue, 2 Apr 2019 17:13:33 +0200 Subject: [PATCH] utils: makesdf: use only slow values in timingcheck section SDF spec assumes we have only one set of values in the timingcheck section Signed-off-by: Karol Gugala --- utils/makesdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/makesdf.py b/utils/makesdf.py index ac0dfc8d..2ba8f5bf 100644 --- a/utils/makesdf.py +++ b/utils/makesdf.py @@ -78,7 +78,7 @@ def produce_sdf(timings, outdir): continue timingcheck = \ """ - ({prop} {input} (posedge {clock}) ({FAST_MIN}::{SLOW_MIN})({FAST_MAX}::{SLOW_MAX}))""".format( + ({prop} {input} (posedge {clock}) ({SLOW_MIN}::{SLOW_MAX}))""".format( prop=timings[slice][site][bel_type][delay]['sequential'].upper(), **timings[slice][site][bel_type][delay])