0

它向我显示了一个错误: ERROR:Xst:787 - "E:/tumama/tytyty.vhd" line 54: Index value <4> is not in Range of array 。

它是一个“通用”代码,我的嵌入信号 A 具有 n 的 5 位,我只想在一个案例中使用 4 位进行转换。所以我在 Y 中有 4 位注释是针对并发代码的

但我不明白谢谢

library IEEE;
    use IEEE.STD_LOGIC_1164.ALL;



entity FirstTermExamen is

    Generic (n: natural := 4);

    Port ( Num : in   STD_LOGIC_VECTOR (n-1 downto 0);
           Sel : in   STD_LOGIC;
           Y   : out  STD_LOGIC_VECTOR (n-1 downto 0)
              );

end FirstTermExamen;

architecture Behavioral of FirstTermExamen is

    signal A: STD_LOGIC_VECTOR (n downto 0);

begin

--  --Secuencial Description
--  Binary_Gray : process(A, Num, Sel)
--      begin 
--  
--  --Initial conditions
--  A(0) <= Num(0);
--  A(1) <= Num(0) xor Num(1);
--  
--   for i in 1 to n-1 loop
--          if Sel = '1' then   A(i+1) <= Num(i) xor Num(i+1);
--          else              A(i+1) <= A(i)   xor Num(i+1);
--          
--          end if;
--      
--  end loop;
--  
--  for j in 0 to n loop
--          Y(j)<= A(j);
--          
--      end loop;
--
--end process Binary_Gray;

    --Concurrent Description
    A(0) <= Num(0);
    A(1) <= Num(0) xor Num(1);


    Binary_Gray: 
    for i in 1 to n-1 generate
        begin
            A(i+1) <= Num(i) xor Num(i+1) when Sel = '1' else
                   A(i)   xor Num(i+1);

      end generate;

     output:
      for j in 0 to n generate
        begin
            Y(j)<= A(j);

        end generate;

end Behavioral;
4

1 回答 1

2

当您的循环索引i达到值 n-1 时,您正在尝试访问Num(n). 但是,Num仅针对 的范围定义(n-1 downto 0)

一个数字示例是 n=4,这是您的默认情况:
您为i从 1 到 3 的值生成,但访问Num(i+1),因此Num(4)。但是,如上所述,Num仅在 range 中定义3 downto 0

于 2013-09-26T00:46:59.907 回答