Forum Discussion
Altera_Forum
Honored Contributor
8 years agoTimequest constraints for a dynamically phase-shifted PLL
I've been trying to properly constrain a design that uses dynamic phase shifting of an instance of an altera_pll core that I created. I.e. to enable phase-shifting I checked the "enable access to dy...
Altera_Forum
Honored Contributor
8 years agoA clock enable is usually written like this:
always_ff @(posedge dynshift_clk) begin if (clock_enable == 1'b1) begin d <= c[11]; end end But, I cannot say if using a clock enable actually helps in your application.