From 52f6f092cee6f574f83540a17d2a31a42829332f Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Tue, 12 Feb 2019 15:21:51 -0800 Subject: [PATCH] Fix missing argument. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- fuzzers/042-clk-bufg-config/top.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzers/042-clk-bufg-config/top.py b/fuzzers/042-clk-bufg-config/top.py index 3d56beab..8d770d6b 100644 --- a/fuzzers/042-clk-bufg-config/top.py +++ b/fuzzers/042-clk-bufg-config/top.py @@ -19,7 +19,7 @@ def gen_sites(): ys = [] for site, site_type in gridinfo.sites.items(): if site_type == 'BUFGCTRL': - x, y = xy_fun() + x, y = xy_fun(site) xs.append(x) ys.append(y)