Forum Discussion
Altera_Forum
Honored Contributor
12 years ago --- Quote Start --- Try to add more pipeline stages in that path. --- Quote End --- Hi Andrew: It's ok now, thank you for you advise. I just modified the code from
if hitok/=hitok_q and hitok='1' then--Latch the Coarse Time
CT_Latch <= CT_cnt_q;
end if; toif hitok_q/=hitok_2q and hitok_q='1' then--Latch the Coarse Time
CT_Latch <= CT_cnt_q;
end if; The relation among "hitok", "hitok_q" and "hitok_2q" is as belowhitok_q <= hitok;hitok_2q <= hitok_q;.