|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
本人最近在学习DC综合,在check design后出现warning:In design 'decoder', cell 'B_0' does not drive any nets,请问这是什么错误,如何解决,并且在设置输出延时时,出现Error: unknown command 'out[2193]',不知如何解决,望有大神指点综合代码如下:
`timescale 1us/100ns
module decoder(out,clk,clear,row,column);
input clk;
input clear;
input [6:0] row,column;
output [16384:1] out;
reg [16384:1] out;
reg [14:0] index;
always@(posedge clk or negedge clear)
begin
if(!clear)
out <= 0;
else
begin
index = (row+1) * (column+1);
out[index] <= 1;
end
end
endmodule |
|