From f2b90319f2ba54b51adbb3dfe70ef793ced262f7 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 11 Jun 2018 15:44:14 -0700 Subject: icebox: Fix driver detection for LUT cascade. The lutff_X/lout is a driver signal. --- icebox/icebox_vlog.py | 1 + 1 file changed, 1 insertion(+) diff --git a/icebox/icebox_vlog.py b/icebox/icebox_vlog.py index 5736011..9aae9c7 100755 --- a/icebox/icebox_vlog.py +++ b/icebox/icebox_vlog.py @@ -350,6 +350,7 @@ for segs in sorted(ic.group_segments(extra_connections=extra_connections, extra_ if re.match(r"ram/RDATA_", s[2]): count_drivers += 1 if re.match(r"io_./D_IN_", s[2]): count_drivers += 1 if re.match(r"lutff_./out", s[2]): count_drivers += 1 + if re.match(r"lutff_./lout", s[2]): count_drivers += 1 if count_drivers != 1 and check_driver: failed_drivers_check.append(n) -- cgit v1.2.3