Commit f7304a17 authored by Robert Jordens's avatar Robert Jordens
Browse files

xilinx/ise: fix add_period_constraint

parent ccf63038
......@@ -201,10 +201,9 @@ class XilinxISEToolchain:
platform.add_platform_command(
"""
NET "{clk}" TNM_NET = "PRD{clk}";
TIMESPEC "TS{clk}" = PERIOD "PRD{clk}" {period} ns HIGH 50%;
TIMESPEC "TS{clk}" = PERIOD "PRD{clk}" """ + str(period) + """ ns HIGH 50%;
""",
clk=clk,
period=str(period),
)
def add_false_path_constraint(self, platform, from_, to):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment