|
发表于 2009-5-3 20:57:59
|
显示全部楼层
如果不用流水线:
module top(a,b,c,d,clk)
input a,b,c;
input clk;
output d;
assign d=a+b+c;
endmodule
用流水线:
module top(a,b,c,d,clk)
input a,b,c;
input clk;
output d;
reg step0,step1;
always @ (posedge clk)
begin
step0<=a+b;
step1<=step0+c;
end
assign d=step1;
endmodule
大概这样吧 |
|