Forum Discussion
Altera_Forum
Honored Contributor
12 years agoSynthesizable delay with VHDL (One single output pulses)
Thanks in advance for your nice instructions. What I am doing is producing a single output pulse. It is a simple output but due my little knowledge it becomes complicated for me. What I want in ...
Altera_Forum
Honored Contributor
12 years agoYou're inferring a register on data_out. You may assign a default value '0' to it, when conditions ( c = a ) and ( c = b ) don't match.
process.. begin if( rising_edge(clk)) then data_out <= '0'; case .... a reset condition it helps too: begin if(clr='1') then data_out <= '0'; elsif(rising_edge(clk)...