aboutsummaryrefslogtreecommitdiffstats
path: root/icebox/icebox_vlog.py
diff options
context:
space:
mode:
authorTim 'mithro' Ansell <me@mith.ro>2018-06-11 15:44:14 -0700
committerTim 'mithro' Ansell <me@mith.ro>2018-06-11 15:45:15 -0700
commitf2b90319f2ba54b51adbb3dfe70ef793ced262f7 (patch)
tree61d88e340909c49e2d7ef3ffca9ecb2705f36a53 /icebox/icebox_vlog.py
parent92751d505af0e2843694a1b59c89bb8896546aba (diff)
downloadicestorm-f2b90319f2ba54b51adbb3dfe70ef793ced262f7.tar.gz
icestorm-f2b90319f2ba54b51adbb3dfe70ef793ced262f7.tar.bz2
icestorm-f2b90319f2ba54b51adbb3dfe70ef793ced262f7.zip
icebox: Fix driver detection for LUT cascade.
The lutff_X/lout is a driver signal.
Diffstat (limited to 'icebox/icebox_vlog.py')
-rwxr-xr-xicebox/icebox_vlog.py1
1 files changed, 1 insertions, 0 deletions
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)