13 lines
389 B
Systemverilog
13 lines
389 B
Systemverilog
`ifndef CALC_SEQ_PKG_SV
|
|
`define CALC_SEQ_PKG_SV
|
|
package calc_seq_pkg;
|
|
import uvm_pkg::*; // import the UVM library
|
|
`include "uvm_macros.svh" // Include the UVM macros
|
|
// bring in the transaction, the command/response enums and the sequencer
|
|
import calc_agent_pkg::*;
|
|
`include "calc_base_seq.sv"
|
|
`include "calc_simple_seq.sv"
|
|
`include "calc_seq_lib.sv"
|
|
endpackage
|
|
`endif
|