Dear Readers
Lets write small piece of code to print UVM Library version number using Verilog.
2)You can also refer to
http://www.dvteclipse.com/uvm-1.1-HTML_API/summary-macro-global.html
http://www.edaplayground.com/x/4_y
-Happy Reading
Hash
**********************************************************************
module dummy_printer();
initial
begin
$display("*****************");
$display(`UVM_VERSION_STRING);
$display("******************");
end
endmodule
-- Compiling module dummy_printer
Top level modules:
dummy_printer
Reading /altera-quartus/13.1/modelsim_ase/tcl/vsim/pref.tcl
# 10.1d
# vsim -do {onElabError resume; run -all; exit} -c -suppress 3829 -sv_lib uvm_dpi dummy_printer
# Loading sv_std.std
# Loading work.dummy_printer
# onElabError resume
# resume
# run -all
# *****************
# UVM-1.1d
# ******************
*********************************************************************************************
Lets write small piece of code to print UVM Library version number using Verilog.
2)You can also refer to
http://www.dvteclipse.com/uvm-1.1-HTML_API/summary-macro-global.html
http://www.edaplayground.com/x/4_y
-Happy Reading
Hash
**********************************************************************
module dummy_printer();
initial
begin
$display("*****************");
$display(`UVM_VERSION_STRING);
$display("******************");
end
endmodule
-- Compiling module dummy_printer
Top level modules:
dummy_printer
Reading /altera-quartus/13.1/modelsim_ase/tcl/vsim/pref.tcl
# 10.1d
# vsim -do {onElabError resume; run -all; exit} -c -suppress 3829 -sv_lib uvm_dpi dummy_printer
# Loading sv_std.std
# Loading work.dummy_printer
# onElabError resume
# resume
# run -all
# *****************
# UVM-1.1d
# ******************
*********************************************************************************************
No comments:
Post a Comment