Altera_Forum
Honored Contributor
15 years agoTransportation delay problem
Dear Experts,
I am having problem with simulation of the transportation delay,.i.e., it does not show any impact on the resulting waveform.I am using Quartus II here is the code,copy-pasted from the book. LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; ENTITY del IS PORT ( a : IN std_logic; b : OUT std_logic); END del; ARCHITECTURE buf OF del IS BEGIN b <= a AFTER 20 ns; END buf; THANK YOU,