Merge pull request #153 from mithro/lout-driver

icebox: Fix driver detection for LUT cascade.
This commit is contained in:
Clifford Wolf 2018-06-13 13:37:43 +02:00 committed by GitHub
commit 0cf4a21209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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)