diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-13 13:37:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-13 13:37:43 +0200 |
commit | 0cf4a21209a268b94d27839ec2ac4b9fb0cd74e5 (patch) | |
tree | bc8e3cfb83f2d2993391af344433f45dbfa259e8 /icebox | |
parent | dd77a918da9b945721e92a2deac32f283caf9721 (diff) | |
parent | f2b90319f2ba54b51adbb3dfe70ef793ced262f7 (diff) | |
download | icestorm-0cf4a21209a268b94d27839ec2ac4b9fb0cd74e5.tar.gz icestorm-0cf4a21209a268b94d27839ec2ac4b9fb0cd74e5.tar.bz2 icestorm-0cf4a21209a268b94d27839ec2ac4b9fb0cd74e5.zip |
Merge pull request #153 from mithro/lout-driver
icebox: Fix driver detection for LUT cascade.
Diffstat (limited to 'icebox')
-rwxr-xr-x | icebox/icebox_vlog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/icebox/icebox_vlog.py b/icebox/icebox_vlog.py index 59f1b6c..a86f11e 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) |