当前位置:网站首页>FPGA - Summary of bugs in ISE (in update)

FPGA - Summary of bugs in ISE (in update)

2022-08-09 13:44:00 51CTO


1.procedural assignment to a non-register DATA_BUS is not permitted

This kind of error is generally the use of non-reg variables in the always statement, all signals in the always statement must be reg variables, low-level errors, (unfamiliar with syntax)

2

The following error occurred:

ERROR:Xst:880 - "mst_pulse_calculation.v" line 124: Cannot mix blocking and non blocking assignments on signal .
ERROR:Xst:880 - "mst_pulse_calculation.v" line 125: Cannot mix blocking and non blocking assignments on signal .

In English, it means that blocking and non-blocking assignment of signals cannot be performed at the same time.

原网站

版权声明
本文为[51CTO]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/221/202208091233068749.html