Tamas888
Junior Member level 3
Hello
I have a question:
I have a following code in vhdl:
process
begin
A<=B;
wait 10ns;
A<=C;
wait 10ns;
end
So the sensitivity list is empty and I know the above code will work periodically. In the first 10ns B input will be on A output and the second 10ns C input will be on the A output. But what happen if B changes during the execution for example in the 2ns? will it appear on the output immediately or only after the next period?
Thanks,
Tamas
I have a question:
I have a following code in vhdl:
process
begin
A<=B;
wait 10ns;
A<=C;
wait 10ns;
end
So the sensitivity list is empty and I know the above code will work periodically. In the first 10ns B input will be on A output and the second 10ns C input will be on the A output. But what happen if B changes during the execution for example in the 2ns? will it appear on the output immediately or only after the next period?
Thanks,
Tamas