Forum Discussion
Altera_Forum
Honored Contributor
13 years agoHi,
you can not drive h_count/v_count in two different processes. This will result in an undefined value (as you can see in your simulation). You should use something like that : process(clk,reset) begin if reset = '1' then h_count <= (others => '0'); elsif (clk'event and clk = '1') then .. Regards, HJS