我已经对此进行了研究,但我在其他网页上找到的示例已经断开了链接。我正在寻找一个如何将包中包含的自定义VHDL记录导入SystemVerilog Testbench的示例。
我使用的是modelsim,所以我读过我需要使用-mixedsvvh
开关。我是否需要在vcom
和vlog
来电时使用此开关?此外,还有另一个开关[b | s | v]
,当我使用s
时,它会给我一个错误:
**错误:(vcom-1276)选项' -mixedsvvh'给出了一个不好的论点。
当我不使用任何参数时,我尝试运行vsim
并收到以下消息:
- 导入包c:/Projects/source/work.test_pkg__mti__sv__equiv__implct__pack **错误:Test_Top_TB.sv(4):' t_Test'是一种未知的类型。
library ieee;
use ieee.std_logic_1164.all;
package test_pkg is
type t_Test is record
DATA1 : std_logic_vector(15 downto 0);
DV1 : std_logic;
DATA2 : std_logic_vector(5 downto 0);
DV2 : std_logic;
end record t_Test;
end package test_pkg;
library ieee;
use ieee.std_logic_1164.all;
library work;
use work.test_pkg.all;
entity Test_Top is
port (
i_Clk : in std_logic;
i_Data : in t_Test;
o_Data : out t_Test
);
end entity Test_Top;
architecture RTL of Test_Top is
begin
process (i_Clk) is
begin
if rising_edge(i_Clk) then
o_Data.DATA1 <= i_Data.DATA1;
o_Data.DV1 <= i_Data.DV1;
o_Data.DATA2 <= i_Data.DATA2;
o_Data.DV2 <= i_Data.DV2;
end if;
end process;
end architecture RTL;
interface Test_IF();
import test_pkg::*;
t_Test Data;
endinterface // Test_IF
module Test_Top_TB ();
import test_pkg::*;
logic r_Clock;
Test_IF hook();
Test_IF hook2();
Test_Top UUT
(.i_Clk(r_Clock),
.i_Data(hook.Data),
.o_Data(hook2.Data)
);
endmodule
答案 0 :(得分:3)
尝试将Custom Search API
测试平台中的t_Test
更改为小写,即。 systemverilog
。