minor fix on the SDC format

This commit is contained in:
tangxifan 2020-03-25 14:46:31 -06:00
parent 62b6de8437
commit 4a0128f240
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ void print_pnr_sdc_clock_port(std::fstream& fp,
fp << " -name " << generate_sdc_port(port_to_constrain);
fp << " -period " << std::setprecision(10) << clock_period;
fp << " -waveform {0 " << std::setprecision(10) << clock_period / 2 << "}";
fp << " [get_ports{" << generate_sdc_port(port_to_constrain) << "}]";
fp << " [get_ports {" << generate_sdc_port(port_to_constrain) << "}]";
fp << std::endl;
}