A
ALuPin
Hi,
I have the following process without sensitivity list:
p_trigger: process
begin
for i in 0 to 10 loop
wait until ls_trigger='1';
if ls_falling_edge_enable='1' then
wait until ls_trigger='0';
end if;
end loop;
wait;
end process p_trigger;
Will the if branch be entered if "ls_falling_edge_enable" becomes
'1' ?
Thank you for your opinion.
Rgds
Andre
I have the following process without sensitivity list:
p_trigger: process
begin
for i in 0 to 10 loop
wait until ls_trigger='1';
if ls_falling_edge_enable='1' then
wait until ls_trigger='0';
end if;
end loop;
wait;
end process p_trigger;
Will the if branch be entered if "ls_falling_edge_enable" becomes
'1' ?
Thank you for your opinion.
Rgds
Andre