关于解决Quartus II中: Can't resolve multiple constant drivers for net "at uptime_module.v

Quartus II 综合编译出现错误:

Error (10028): Can't resolve multiple constant drivers for net "flag_0p9Vm_up" at uptime_module.v(60)

原因(解决方案):

同一个信号不允许在多个进程中赋值,不然为多驱动;两个进程里都有同一个条件判断的话,会产生并行信号冲突的问题,进程的并行性决定了多进程不同能对同一个对象进行赋值。要想解决这类问题要在其程序中找出多个进程里同时对这个报错变量进行赋值的程序段进行修改。(说简单点就是:不能在两个以上always内对同一个变量赋值)

猜你喜欢

转载自blog.csdn.net/m0_38022615/article/details/80313302