完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
vhdl 进程嵌套循环过程
在进程中嵌套循环过程的语法问题,代码如下: procedure (signal c : integer; signal d : integer ) is begin ......(省略) end procedure; type ArrayNxInt is array (natural range <>) of Integer; signal a :ArrayNxInt (0 to 1); signal b :ArrayNxInt (0 to 1); process (clk) begin if (clk'event and clk = '1') then for i in 0 to 1 loop Procedure1 (a(i), b(i)); end loop; end if; end process; modelsim仿真是报错: Actual (indexed name) for formal "c" is not a static signal; Actual (indexed name) for formal "d" is not a static signal; 如果代码改为 process (clk) begin if (clk'event and clk = '1') then Procedure1 (a(0), b(0)); Procedure1 (a(1), b(1)); end if; end process; 或者组合逻辑 Label1 : for i in 0 to 1 generate Procedure1 (a(i), b(i)); end generate; 就没有问题。 在process中,编译器好像不能正确翻译for循环+进程语句。 现在需要在process中调用procedure,并且需要for循环,请高手指点,多谢! |
|
相关推荐
1个回答
|
|
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1368 浏览 1 评论
1167 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
1374 浏览 0 评论
909 浏览 0 评论
2187 浏览 0 评论
1410 浏览 33 评论
5602 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-20 15:29 , Processed in 0.653463 second(s), Total 72, Slave 55 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号