FPGA中模块symbole后的连接出错

2019-03-25 07:24发布

小弟最近自学FPGA几天,然后写了个数字钟,数字钟的各个模块已经弄好且编译没问题,但是将模块SYMBOLE之后连线却出错了,图片中DISPLAY是数码管的译码器,cnt6和cnt10是计数器,连线后提示错误,这是什么原因
此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
爱因所以斯坦
1楼-- · 2019-03-25 15:57
< / 小弟想秒分时都写个模块然后最后接起来构成数字钟,上面的是秒的模块连接
杭州康芯小马
2楼-- · 2019-03-25 21:51
 精彩回答 2  元偷偷看……
爱因所以斯坦
3楼-- · 2019-03-26 02:17
杭州康芯小马 发表于 2017-8-12 09:27
找不到源文件,这个需要在软件assignment--》setting-->File中添加这些文件,连线好再编译。

微信图片_20170812185124.png 嗯谢谢大神 但是这个又是怎么回事
爱因所以斯坦
4楼-- · 2019-03-26 03:24
杭州康芯小马 发表于 2017-8-12 09:27
找不到源文件,这个需要在软件assignment--》setting-->File中添加这些文件,连线好再编译。

这是VHDL代码
module cnt6(clr,clk,cnt,out);
input clr,clk;
output[3:0] out;
output cnt;
reg[3:0] out;
reg cnt;
always @(posedge clk or posedge clr)
begin
if(clr)
begin out=4'b0000;cnt=0;end
else if(out==4'b0110)
begin out=4'b0000;cnt=1;end
else
begin cnt=0;out=out+1;end
end
endmodule


module cnt10(clr,clk,cnt,out);
input clr,clk;
output[3:0] out;
output cnt;
reg[3:0] out;
reg cnt;
always @(posedge clk or posedge clr)
begin
if(clr)
begin out=4'b0000;cnt=0;end
else if(out==4'b1010)
begin out=4'b0000;cnt=1;end
else
begin cnt=0;out=out+1;end
end
endmodule

module DISPLAY(a,q);
output[7:0] q;
input[3:0] a;
reg[7:0] q;
always @(a)
begin
case(a)
4'b0000:q<=8'b00111111;
4'b0001:q<=8'b00000110;
4'b0010:q<=8'b01011011;
4'b0011:q<=8'b01001111;
4'b0100:q<=8'b01101101;
4'b0101:q<=8'b01101101;
4'b0110:q<=8'b01111101;
4'b0111:q<=8'b00000111;
4'b1000:q<=8'b01111111;
4'b1001:q<=8'b01101111;
endcase
end
endmodule

一周热门 更多>