R
Raja Harsha
Hi,
Is it possible that a process gets executed even when there is no change in the inputs given in the sensitivity list?
For example,
Process (x,y,z)
begin
if a='1' then
c<=d+f;
p=r-q;
end if;
end process;
In the above program, if i change a or d or any other input except x or y or z, does the process get executed?
I have read in some literature that a process gets executed only once by default and then only when there is a change in signals mentioned in the sensitivity list.
Is it possible that a process gets executed even when there is no change in the inputs given in the sensitivity list?
For example,
Process (x,y,z)
begin
if a='1' then
c<=d+f;
p=r-q;
end if;
end process;
In the above program, if i change a or d or any other input except x or y or z, does the process get executed?
I have read in some literature that a process gets executed only once by default and then only when there is a change in signals mentioned in the sensitivity list.