Quartus+Nios II for eclipse问题合集

由于对于FPGA+NIOS II 的工作需要,对工作过程中遇到的问题进行记录,持续更新。

1、BSP directory does not exist: . Stop.

Nios II使用过程中遇到的一些问题2_error executing 'nios2-bsp-generate-files --bsp-di-CSDN博客https://blog.csdn.net/qq_39485231/article/details/105908579

2、ignored dangling comma in List of Port Connections

Warning (10275): Verilog HDL Module Instantiation warning at xxx.v(24): ignored dangling comma in List of Port Connections

---- 例化模块多了 逗号,去除最后一个逗号;

3、Error (12007): Top-level design entity "xxx" is undefined

模块名xxx.v与顶层实体名module xxx不一致;

4、output or inout port "xxx" must be connected to a structural net expression

Error (10663): Verilog HDL Port Connection error at top.v(70): output or inout port "trip_signal" must be connected to a structural net expression

bash 复制代码
module protection_top(
    input                sys_clk,            //时钟
    input                sys_rst_n,          //复位,低电平有效
    		     	
    input      [3:0]     avl_address,    //地址
    input                avl_write,      //写请求
    input      [31:0]    avl_writedata,  //写数据
    input                avl_read,       //读请求
    output     [31:0]    avl_readdata,   //读数据
	
    output     reg trip_irq
);

///<output     reg trip_irq 应使用wiwe
相关推荐
算法笑匠13 天前
FPGA驱动AD9226实现65MSPS高速数据采集
fpga·adc·高速数据采集·ad9226
kanhao10018 天前
电平交叉采样 (Level-Crossing Sampling)
算法·fpga开发·fpga
环能jvav大师19 天前
在Proteus中仿真PLD元器件(WinCupl及WinSim基础使用)
硬件架构·proteus·fpga
坏孩子的诺亚方舟22 天前
FPGA设计基于团队的最佳实践2_IP及设计重用&功能验证&时序收敛
fpga
ALINX技术博客25 天前
【202601芯动态】全球 FPGA 异构热潮,ALINX 高性能异构新品预告
人工智能·fpga开发·gpu算力·fpga
minglie125 天前
GCC的__attribute__用法
fpga
minglie125 天前
Zynq上UART/IIC/SPI的27个实验-第15课:PL 逻辑模拟 IIC 从设备AT24C256 行为
fpga
minglie125 天前
蚂蚁S9矿板 Nand Flash的使用
fpga
XINVRY-FPGA25 天前
中阶FPGA效能红线重新划定! AMD第2代Kintex UltraScale+登场,记忆体频宽跃升5倍
嵌入式硬件·fpga开发·硬件工程·dsp开发·fpga
南檐巷上学25 天前
基于FPGA的音频信号监测识别系统
fpga开发·音频·verilog·fpga·傅立叶分析·fft·快速傅里叶变换