|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在设计一个简单的数字时钟时进行dc综合时出现warning Warning: In design 'minute', cell 'C110' does not drive any nets. (LINT-1) 有好几个模块都有类似的问题,一直找不出问题,求高人指点
附minute模块代码:
module minute
(clk,rst,isread,read_minute,co_sec,out_minute,co_min
);
input clk;
input rst; //复位
input isread; //配置启动使能信号
input co_sec; //秒进位
input [5:0] read_minute; //配置数据
output co_min; //分进位
output [5:0] out_minute;
reg [5:0] minutes; //驱动out_minute
reg en_min; //驱动co_min
always @(posedge clk or negedge rst)
if(!rst)
begin
minutes <= 6'd0;
en_min <= 1'b0;
end
else if (isread) //配置信号使能 数据从配置读入信号进行输出
minutes <= read_minute;
else if ((co_sec == 1) && (minutes == 6'd59))
begin
en_min <= 1'b1; //进位
minutes <= 6'd0; //清零
end
else if (co_sec == 1) //分+1
begin
minutes <= minutes + 1'b1;
en_min <= 1'b0;
end
else en_min <= 1'b0;
assign out_minute = minutes;
assign co_min = en_min;
endmodule
希望各路大神多指点!!!!!!!!!!!!!!不胜感激!!!!!!!!!! |
|