35 lines
928 B
Systemverilog
35 lines
928 B
Systemverilog
|
|
/****************************************************************************
|
||
|
|
+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+ +-+-+-+-+-+-+-+-+
|
||
|
|
|F|u|n|c|t|i|o|n|a|l| |V|e|r|i|f|i|c|a|t|i|o|n| |o|f| |H|a|r|d|w|a|r|e|
|
||
|
|
+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+ +-+-+-+-+-+-+-+-+
|
||
|
|
|
||
|
|
FILE reset_pkg.sv
|
||
|
|
|
||
|
|
DESCRIPTION package containing all parameters and includes
|
||
|
|
|
||
|
|
****************************************************************************/
|
||
|
|
|
||
|
|
`ifndef RESET_PKG_SV
|
||
|
|
`define RESET_PKG_SV
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Package: reset_pkg
|
||
|
|
*/
|
||
|
|
package reset_pkg;
|
||
|
|
|
||
|
|
import uvm_pkg::*;
|
||
|
|
`include "uvm_macros.svh"
|
||
|
|
|
||
|
|
`include "reset_config.sv"
|
||
|
|
`include "reset_transaction.sv"
|
||
|
|
`include "reset_driver.sv"
|
||
|
|
`include "reset_monitor.sv"
|
||
|
|
`include "reset_agent.sv"
|
||
|
|
`include "sequences/reset_seq_lib.sv"
|
||
|
|
|
||
|
|
endpackage : reset_pkg
|
||
|
|
|
||
|
|
`include "reset_if.sv"
|
||
|
|
|
||
|
|
`endif
|