Altera_Forum
Honored Contributor
14 years agoTiming Not Being Constrained?
My problem is that my design passes timing closure no matter how I constrain it (well almost). In particular, if I constrain the output timing like this;
create_clock -name {real_clock} -period 10.0 [get_ports {real_clock}] create_clock -period 10.0 -name virtual_clock set_output_delay -clock virtual_clock -max 5.0 [get_ports}{my_output_pin}] Where my_output_pin is driven by synchronous logic clocked by real_clock. What I'm finding is that the design passes timing closure no matter what value I choose for the output delay, 5.0 ns or 15.0ns. I know that Quartus is "seeing" my sdc file. If I remove my clock grouping commands I get all kinds of violations. It seems like I'm missing something simple.