mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
build/altera/platform: Don't set keep attribute on clk signal when using add_period_constraints.
This was preventing the build with Quartus.
This commit is contained in:
parent
62e869296f
commit
c1885b333f
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class AlteraPlatform(GenericPlatform):
|
|||
if clk is None: return
|
||||
if hasattr(clk, "p"):
|
||||
clk = clk.p
|
||||
self.toolchain.add_period_constraint(self, clk, period)
|
||||
self.toolchain.add_period_constraint(self, clk, period, keep=False)
|
||||
|
||||
def add_false_path_constraint(self, from_, to):
|
||||
if hasattr(from_, "p"):
|
||||
|
|
Loading…
Reference in a new issue