in the following vhdl process a,b,c and d are all integers that have a value of 0 at time=10 NS IF E CHANGES FROM 0 TO 1 at time=20ns specify the time (s) at which signal will change and the vaule to which it will change list these changes chronological order (20,20+dalta,20+20dalta, etc)
p1: process
begin
wait on E;
A <= 1 after 5 ns;
b <= A+1;
C <= B after 10 ns;
wait for 0 ns;
D <= B after 3 ns;
A <= A+5 after 15 ns;
B <= B+7 ;
end process p1;
يااااخواني والله حاولت اكثر من مرة لكن مافهمت السوال لان الدكتور شرح قشووور فقط قرات ولكن على نسق نفس هذا السوال لم اجد


