【发布时间】:2013-08-08 07:07:30
【问题描述】:
我在两个 VHDL 模块之间共享“数组数组”时遇到问题。
我在 VHDL 子模块中声明了一个“数组数组”,如下所示,
type avg_log is array (0 to 31) of std_Logic_vector(19 downto 0);
signal V1 :avg_log :=(others=>others=>'0');
我想将V1()() 的所有元素发送到顶层模块,我尝试使用 PORT 和 GENERIC,但收到错误消息。
谁能帮帮我?
【问题讨论】: