Hi,
My TB is UVM based and DUT is VHDL based. For that I am written system verilog wrapper file which contain VHDL DUT top instance. Now I have to assign interface signal or any signal from system verilog wrapper file to VHDL DUT’s lower path signal, How to do this?
eg. assign dut_wrapper.dut_top.inst0.tx_data_1 = tx_data;
for this simulation shows fatal error:- Invalid hierarchical access from Verilog instance “/top/dut_wrapper” to non-Verilog object “/top/dut_wrapper/dut_top/inst0/tx_data_1”.
Please help me to solve this issue.
Thanks.