A
ALuPin
Guest
Hi,
what is the difference between the following processes
if I want to use the basic clock and the derived clock for my
simulation with Modelsim?
process(clk)
begin
if clk='1' then
clk2 <= not clk2;
end if;
end process;
-- clk and clk2 are used for simulation
----------------------------------------------
process(clk)
begin
clk1 <= clk;
if clk='1' then
clk2 <= not clk2;
end if;
end process;
-- clk1 and clk2 are used for simulation
Thank you for your help.
Best regards
what is the difference between the following processes
if I want to use the basic clock and the derived clock for my
simulation with Modelsim?
process(clk)
begin
if clk='1' then
clk2 <= not clk2;
end if;
end process;
-- clk and clk2 are used for simulation
----------------------------------------------
process(clk)
begin
clk1 <= clk;
if clk='1' then
clk2 <= not clk2;
end if;
end process;
-- clk1 and clk2 are used for simulation
Thank you for your help.
Best regards