quartus中output enable signals不够用的解决方法

        最近写了一个程序,老是出现这样的错误:Error: Design requires 7 output enable signals, but the device can contain only 6 output enable signals ,当我写7个(others => 'Z')时,就会出现这样的错误,原以为这是芯片的限制,只能用6个高阻,然后其他的高阻我就用信号转发,signal <= (others => 'Z') ,io <= signal,这样语法上是没错,但实际上io口并不能呈高阻状态,所以一定要有7个高阻状态才能实现我所要的功能,冥思苦想未果,最后认识了网友“水滴”,她告诉我是逻辑单元占用过多造成,我的程序里与门确实过多,简化之后就可以了

你可能感兴趣的:(IO,Signal,output)