Is it possible to instantiate a tlm analysis fifo inside tb top.sv and connect to the monitor 's analysis port of an agent??
I intend to use this tlm fifo's output to send data to a reference model which is an entity.........
In reply to krunal.modi:
You should instantiate your reference model in your scoreboard. A VHDL design should not be a problem.
In reply to chr_sue:
How can I have an entity/module inside scoreboard class in UVM?
In reply to krunal.modi:
You can’t. A class is dynamic, but a module or entity is static.
Instantiate the VHDL reference model in top.sv, and hook it up the signals of the interface driven by the agent.