Typing “ovm_top.ovm_report_…” can take a long time. Here’s a way to make it easy to use OVM messaging.
{ 1 comment }
From the monthly archives:
Typing “ovm_top.ovm_report_…” can take a long time. Here’s a way to make it easy to use OVM messaging.
{ 1 comment }
SystemVerilog is becoming the defacto standard for test bench creation, even in cases where the DUT is VHDL. As more and more IP becomes available in SystemVerilog, even hard core VHDL engineers will need to have at least a passing aquaintance with the language. With that in mind, I’ve created a primer that teaches the [...]
{ 0 comments }
In FPGA Simulation, I showed you how to use the OVM reporting methods and how to include the module name in the messages for easier debugging. The code looked like this, for example in Figure 13-1 in the book: module top; string m; initial begin $sformat(m,”%m”); ovm_top.set_report_verbosity_level(200); ovm_top.ovm_report_info (m,”Just Info”, 300, `__FILE__,`__LINE__); This example gives [...]
{ 0 comments }