我正在尝试将 std_logic_vector 的某些部分复制到另一个位置(索引),具体取决于输入。这可以在 Vivado 中合成,但我想使用另一个工具(SymbiYosys,https://github.com/YosysHQ/SymbiYosys)进行形式验证。SymbiYosys 可以使用 Verific 作为前端来处理 VHDL,但 Verific 不接受这一点。这是重现问题的一小段代码。Verific 抱怨“左范围界限不是恒定的”。那么,是否有一种解决方法可以让 Verific 接受这样的变量范围分配?
我已经找到了这篇文章VHDL: slice a different part of an array建议使用循环并按位分配值,但现在我不想更改我的代码,因为它可以与 Vivado 一起使用。此外,我认为这样的循环会损害代码的可读性,可能还会损害实现效率。因此,我正在寻找一种不同的方法(也许是一种将这个错误变成警告的方法,或者是不那么激烈的代码修改)。
library IEEE;
use IEEE.STD_LOGIC_1164.all;
use IEEE.NUMERIC_STD.all;
entity test is
port(
clk : in std_logic;
prefix : in std_logic_vector( 8*8 -1 downto 0);
msgIn : in std_logic_vector(128*8 -1 downto 0);
msgLength : in integer range 1 to 128;
test_out : out std_logic_vector((128+8)*8 -1 downto 0)
);
end test;
architecture behav of test is
begin
process (clk)
begin
if rising_edge(clk) then
test_out <= (others => '0');
test_out((msgLength+8)*8 -1 downto msgLength*8) <= prefix;
test_out( msgLength *8 -1 downto 0) <= msgIn(msgLength*8 -1 downto 0);
end if;
end process;
end behav;