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 agoDo you mean changing:
always_ff @(posedge dynshift_clk)
begin
d <= c;
end ...to: always_ff @(posedge dynshift_clk)
begin
if (clock_enable == 1'b1)
begin
d <= c;
end
else
begin
d <= 1'b0;
end
end ???