FPGA编译错误笔记(LIBERO)
(2016-08-09 18:56:17)| 分类: FPGA |
1.non-net port data_in cannot be of mode input
输入端口 数据不能定义为reg类型
2.
ERROR: cannot assign to memory count directly
(VERI-1006)
ERROR: cannot assign a packed type to an unpacked type
(VERI-1349)
ERROR: cannot access memory count directly (VERI-1002)
将reg count[5:0];
改为 reg [5:0] count;
定义出错

加载中…