使用ISE编译一个verilog HDL代码文档出现如下警告:
WARNING:Xst:737 - Found 8-bit latch for signal <count>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
该文档内容如下:
module operation(
input rst_n,
input add,
input subtract,
output [7:0] q
);
reg [7:0] count;
always @ (add or subtract or rst_n)
begin
if(!rst_n)
count <= 0;
else if(!add)
count <= count + 1;
else if(!subtract)
count <= count - 1;
end
assign q = count;
endmodule
请问大虾们,这个警告怎么解决呢?先谢谢了。
共2条
1/1 1 跳转至页
额~解决了,代码修改如下:
module operation(
input clk_1M,
input rst_n,
input add,
input subtract,
output [7:0] q
);
reg [7:0] count;
always @ (posedge clk_1M or rst_n)
begin
if(!rst_n)
count <= 0;
else if(!add)
count <= count + 1;
else if(!subtract)
count <= count - 1;
end
assign q = count;
endmodule
说明:这是一个检测按键的module。我之前写成了组合逻辑电路,现改为时序逻辑电路就对了。看来需要深入了解组合逻辑电路和时序逻辑电路的语法以及应用场合。
module operation(
input clk_1M,
input rst_n,
input add,
input subtract,
output [7:0] q
);
reg [7:0] count;
always @ (posedge clk_1M or rst_n)
begin
if(!rst_n)
count <= 0;
else if(!add)
count <= count + 1;
else if(!subtract)
count <= count - 1;
end
assign q = count;
endmodule
说明:这是一个检测按键的module。我之前写成了组合逻辑电路,现改为时序逻辑电路就对了。看来需要深入了解组合逻辑电路和时序逻辑电路的语法以及应用场合。
共2条
1/1 1 跳转至页
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
与电子爱好者谈读图二被打赏50分 | |
【FRDM-MCXN947评测】Core1适配运行FreeRtos被打赏50分 | |
【FRDM-MCXN947评测】双核调试被打赏50分 | |
【CPKCORRA8D1B评测】---移植CoreMark被打赏50分 | |
【CPKCORRA8D1B评测】---打开硬件定时器被打赏50分 | |
【FRDM-MCXA156评测】4、CAN loopback模式测试被打赏50分 | |
【CPKcorRA8D1评测】--搭建初始环境被打赏50分 | |
【FRDM-MCXA156评测】3、使用FlexIO模拟UART被打赏50分 | |
【FRDM-MCXA156评测】2、rt-thread MCXA156 BSP制作被打赏50分 | |
【FRDM-MCXN947评测】核间通信MUTEX被打赏50分 |