Altera_Forum
Honored Contributor
16 years agomax 300 process
hi
i have a problem with my altera max device. it does not enter into the process despite the constantly updated clock: q<=q_temp; ff: process(clk) begin IF (clk'event) AND (clk='1') and (en='1') THEN -- Positive Edge q_temp <= d; elsif (en='0') then q_temp<=q_temp; END IF; if (reset='1') then q_temp <='0'; end if; end process; thanks