salma ali bakr
Advanced Member level 3
hi,
i'm a bit confused here, are these processes equal or different?
and if different, what is difference in their behaviours?
do i have to put the wait in the beginning or in the end?
what happens in the initial process evaluation too?
process1: process (A, B)
begin
out<=A and B;
end process;
---------------------------------------
process1: process
begin
out<=A and B;
wait on A, B;
end process;
---------------------------------------
process1: process
begin
wait on A, B;
out<=A and B;
end process;
---------------------------------------
Thanks,
Salma
i'm a bit confused here, are these processes equal or different?
and if different, what is difference in their behaviours?
do i have to put the wait in the beginning or in the end?
what happens in the initial process evaluation too?
process1: process (A, B)
begin
out<=A and B;
end process;
---------------------------------------
process1: process
begin
out<=A and B;
wait on A, B;
end process;
---------------------------------------
process1: process
begin
wait on A, B;
out<=A and B;
end process;
---------------------------------------
Thanks,
Salma