build/generic_platform: avoid removing X pins from named_sc.
We need them on Gowin FPGAs with embedded SDRAM where SDRAM pins are not real IOs.
This commit is contained in:
parent
f324f9531a
commit
8623536a8a
|
@ -396,8 +396,7 @@ class GenericPlatform:
|
||||||
# resolve signal names in constraints
|
# resolve signal names in constraints
|
||||||
sc = self.constraint_manager.get_sig_constraints()
|
sc = self.constraint_manager.get_sig_constraints()
|
||||||
named_sc = [(vns.get_name(sig), pins, others, resource)
|
named_sc = [(vns.get_name(sig), pins, others, resource)
|
||||||
for sig, pins, others, resource in sc
|
for sig, pins, others, resource in sc]
|
||||||
if not re.match(r"^X+$", ''.join(pins))]
|
|
||||||
# resolve signal names in platform commands
|
# resolve signal names in platform commands
|
||||||
pc = self.constraint_manager.get_platform_commands()
|
pc = self.constraint_manager.get_platform_commands()
|
||||||
named_pc = []
|
named_pc = []
|
||||||
|
|
Loading…
Reference in New Issue