Hi,
In uvm environment I want connect .sv(TB) and design in vhdl. How to represent record under record in systemverilog struct?
type abc_t is
record
valid :std_logic
data : std_logic_vector(7 downto 0);
end record;
type a is array (5 downto 0) of abc_t;
type b is array (3 downto 0) of a;
type bcd_t is
record
efg : b
end record;
Please use code tags making your code easier to read. I have added them for you.
There is no standard that defines the interaction between VHDL and SystemVerilog, although most simulation tools provide methods to connect the two. You will need to refer to your tool documentation or contact your tool vendor for additional assistance.
Hi,
In uvm environment I want connect .sv(TB) and design in vhdl. How to represent record under record in systemverilog struct?
type abc_t is
record
valid :std_logic
data : std_logic_vector(7 downto 0);
end record;
type a is array (5 downto 0) of abc_t;
type b is array (3 downto 0) of a;
type bcd_t is
record
efg : b
end record;