verilog常见错误列表
Posted lizhiqing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了verilog常见错误列表相关的知识,希望对你有一定的参考价值。
Error/Warning 来源:https://hdlbits.01xz.net/wiki/ 题目:
1、Quartus Warning 10235:
Warning (10235): Verilog HDL Always Construct warning at FM_mod.v(23): variable "carry_freq" is read inside the Always Construct but isn‘t in the Always Construct‘s Event Control
Warning原因:由于always过程块敏感列表中未完全包含过程块中使用的所有变量;
常见来源:常见于组合逻辑的always过程块中;
解决方法:将always过程块中的敏感列表改为 ‘ * ’ | 将敏感列表改为边沿触发;
以上是关于verilog常见错误列表的主要内容,如果未能解决你的问题,请参考以下文章