H
Henry
Guest
Dear all,
I would like to implement a piplined logic. The code is like:
....
....
always @(posedge clk)
begin
tempa <= input;
tempb <= tempa;
tempc <= tempb;
output <= tempc;
end
....
....
However, the above code seems not efficient. The case would become
even worse if more pipeline stages are used. I would like to ask is it any
efficiency coding to implement the above pipelined logic?
Thank you very much!
Henry
I would like to implement a piplined logic. The code is like:
....
....
always @(posedge clk)
begin
tempa <= input;
tempb <= tempa;
tempc <= tempb;
output <= tempc;
end
....
....
However, the above code seems not efficient. The case would become
even worse if more pipeline stages are used. I would like to ask is it any
efficiency coding to implement the above pipelined logic?
Thank you very much!
Henry