Altera_Forum
Honored Contributor
12 years agoDelay in Pulses and Oscilloscope as simulator
Hi everyone,
Could you please guide me regarding the following problem. I have learnt to write a code for providing delay for output signal. but I need to see the delay in the Oscilloscope. I did the simulation in the modelsim and it is OK. let me show you the ports of my design. entity delay is port( Clk : in std_logic; valid_data : in std_logic; -- goes high when the input is valid. data_in : in std_logic; -- the data input data_out : out std_logic --the delayed input data. ); end delay; As you know in the modelsim we can see the input and output waveform at the same time. Is it possible to do same in the Oscilloscope? I mean, seeing the inputs and outputs waveforms at the same time and observe the delay. Thank you in advance for your assist.