Forum Discussion
Altera_Forum
Honored Contributor
18 years agoCreating a clock pulse
I am trying to create 7 different clock pulses that will go from high to low at a certain time. Can anyone help me? This is what I have so far: library IEEE; use IEEE.std_logic_1164.all; ...
Altera_Forum
Honored Contributor
18 years agoInstead of initializing the signal O otherwise, the Initialization should be included with the process. Also the intermediate signals aren't needed:
process
begin
clockOut_1<='0';
wait for 5 ns;
clockOut_1<='1';
wait;
end process;