12 lines
270 B
Systemverilog
12 lines
270 B
Systemverilog
|
|
`ifndef V5_CALC_TEST_PKG_SV
|
||
|
|
`define V5_CALC_TEST_PKG_SV
|
||
|
|
package calc_test_pkg;
|
||
|
|
// import the UVM library
|
||
|
|
`include "uvm_macros.svh" // Include the UVM macros
|
||
|
|
import uvm_pkg::*;
|
||
|
|
// import test class
|
||
|
|
`include "calc_test_simple.sv"
|
||
|
|
endpackage
|
||
|
|
`include "calc_if.sv"
|
||
|
|
`endif;
|