Guest
hi i am new to vhdl i have doubt with following code lines:
after architecture begin if i write for loop as shown below which
changes one of the parameter of sensitivity list of process as shown
below will the process run after every iteration of loop.
architecture structure
begins
a<="00000000";
for i in 1 to 256 loop
a<=a+"1";
end loop;
process(a,clk) --since a changes in
every iteration will process run
begin --after every
iteration
--body of process
end process;
end architecture;
after architecture begin if i write for loop as shown below which
changes one of the parameter of sensitivity list of process as shown
below will the process run after every iteration of loop.
architecture structure
begins
a<="00000000";
for i in 1 to 256 loop
a<=a+"1";
end loop;
process(a,clk) --since a changes in
every iteration will process run
begin --after every
iteration
--body of process
end process;
end architecture;