Hi guys in the following process how the delayed assignment should be interpreted?
clk_process : process
begin
clk <= '0','1' after 5 ns;
wait for 10 ns;
end process;
Is it intepreted as...
clk is set to '0' for 5 ns then i changes into '1' and after 10 ns it is set again to '0'? or it is simply '0' for 5 ns and '1' for 5 ns?
I'm a bit confused...