FPGA中模块symbole后的连接出错

2019-03-25 07:24发布

小弟最近自学FPGA几天,然后写了个数字钟,数字钟的各个模块已经弄好且编译没问题,但是将模块SYMBOLE之后连线却出错了,图片中DISPLAY是数码管的译码器,cnt6和cnt10是计数器,连线后提示错误,这是什么原因
此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
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

一周热门 更多>