Why is my simulation getting killed?

Hi VLSI experts,
I am trying to verify simple memory in UVM environment for my learning and I got stuck at simulation. I’m not able to understand why my environment is getting killed.
Please help me to understand where I have gone wrong. It will really help me in future.
I’m getting following error
“Result reached the maximum of 5000 lines. Killing process.
Execution interrupted or reached maximum runtime”

For the reference please check my eda link Example_UVM memory - EDA Playground

Thank you

I looked up this message in the EDA Playground Forum, and the reply is:

“The maximum number of lines you can output from any simulation is 5000. Your simulation has exceeded this.”

This means that the output log of the simulation is too long for the EDA Playground website. Most simulation tools do not have this type of restriction.

You can avoid the error by commenting out line 53 in mem_monitor.sv:


         //mem_pkt.print();//(uvm_default_line_printer);

This allows the simulation to complete without errors.

In reply to gsulliva:

Thank you so much gsulliva for taking time to point out the issues.
I appreciated it cheers.