G
gck
Guest
I wrote following program,
module pipe ( out, in, clk );
output out; reg out;
input in, clk;
always @(in)
@(posedge clk)
out <= repeat(2) @(posedge clk) in;
endmodule
I am using QuestSim 6.2b
When I compile using vlog and simulate using vsim.
I have tried to add the signals to waveform using add waves *.
I have found that only signal "in" and "clk" is visible and "out" is
not visible.
It not been shown in signal window also.
I tried same program on Modelsim 6.3c some other PC, its working fine
overthere.
Please Help me.
Thanks in advance
module pipe ( out, in, clk );
output out; reg out;
input in, clk;
always @(in)
@(posedge clk)
out <= repeat(2) @(posedge clk) in;
endmodule
I am using QuestSim 6.2b
When I compile using vlog and simulate using vsim.
I have tried to add the signals to waveform using add waves *.
I have found that only signal "in" and "clk" is visible and "out" is
not visible.
It not been shown in signal window also.
I tried same program on Modelsim 6.3c some other PC, its working fine
overthere.
Please Help me.
Thanks in advance