mirror of https://github.com/YosysHQ/icestorm.git
icebox: Fix driver detection for LUT cascade.
The lutff_X/lout is a driver signal.
This commit is contained in:
parent
92751d505a
commit
f2b90319f2
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue