Quartus II -Warning (10230):truncated value with size 32 to match size of target

喜欢而已 提交于 2020-01-28 04:06:35

Warning (10230): Verilog HDL assignment warning at top_fpga.v(319): truncated value with size 32 to match size of target (16)

警告(10230):Verilog HDL assignment Warning at top pga.v(319):大小为32的截断值以匹配目标大小(16)

因为没有指定位宽,所以系统提示默认为32位所以你将         fifo_cnt<= fifo_cnt + 1; 改为fifo_cnt<= fifo_cnt + 1'b1;就可以了。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!