微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > FPGA,CPLD和ASIC > vhdl 进程嵌套循环过程

vhdl 进程嵌套循环过程

时间:10-02 整理:3721RD 点击:
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循环,请高手指点,多谢!

在for循环内部,是不能使用时钟触发沿的。Procedure1  语句是否含有时钟触发的程序?

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top