|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
求指导!在quartus中调用ROM时编写如下代码
module data_address(clk,rst_n,address);
input clk,rst_n;
output [13:0]address;
reg [13:0]address;
reg[13:0]count;
always@(posedge clk or negedge rst_n)
if (!rst_n)
count<=0;
else
count<=count+1;
always@(posedge clk or negedge rst_n)
if (!rst_n)
address<=0;
else
begin
if (count<14'd16385)
address<=address+1'd1;
else;
end
endmodule
存入数据为16384个,但只能读取两个数
但去掉条件判断语句就能全部读出,并且还有下面的warning
Warning: Ignored node in vector source file. Can't find corresponding node name "address[2]" in design.
有没有人指导一下? |
|