Hi,
I would like to dump the output data into a file.
I'm currently implementing it in the following way.
integer mcd = $fopen("abc.txt", "w");
$fwrite(mcd, "This is my data");
$fclose(mcd);
I need to implement the same functionality using any of the in-build UVM methods like uvm_report_info.
Can you please help me with the same.?
Thanks in advance.
-Subbu