In if loop u r using only one condition that clk='1' well it is not good as some synthesis tool donot take functionality implied from process senstivity list. so better practice is to use like:
if(clk'event and clk='1') then
--code
end if
Such errors raise synthesis problems.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.