1.

What Is Tlm Fifo?

Answer»

In simpler words TLM FIFO is a FIFO between two UVM components, PREFERABLY between MONITOR and Scoreboard. Monitor KEEP on sending the DATA, which will be stored in TLM FIFO, and Scoreboard can GET data from TLM FIFO whenever needed.

// create a FIFO with depth 4

tlm_fifo = new ("uvm tlm_fifo", this, 4);

In simpler words TLM FIFO is a FIFO between two UVM components, preferably between Monitor and Scoreboard. Monitor keep on sending the DATA, which will be stored in TLM FIFO, and Scoreboard can get data from TLM FIFO whenever needed.

// create a FIFO with depth 4

tlm_fifo = new ("uvm tlm_fifo", this, 4);



Discussion

No Comment Found