URL
https://opencores.org/ocsvn/lpffir/lpffir/trunk
Subversion Repositories lpffir
[/] [lpffir/] [trunk/] [uvm/] [lpffir_uvm/] [generated_tb/] [tb/] [data_input/] [sv/] [data_input_config.sv] - Rev 11
Compare with Previous | Blame | View Log
// You can insert code here by setting file_header_inc in file common.tpl
//=============================================================================
// Project : generated_tb
//
// File Name: data_input_config.sv
//
//
// Version: 1.0
//
// Code created by Easier UVM Code Generator version 2016-04-18-EP on Sat Apr 27 13:59:59 2019
//=============================================================================
// Description: Configuration for agent data_input
//=============================================================================
`ifndef DATA_INPUT_CONFIG_SV
`define DATA_INPUT_CONFIG_SV
// You can insert code here by setting agent_config_inc_before_class in file data_input.tpl
class data_input_config extends uvm_object;
// Do not register config class with the factory
virtual data_input_if vif;
uvm_active_passive_enum is_active = UVM_ACTIVE;
bit coverage_enable;
bit checks_enable;
// You can insert variables here by setting config_var in file data_input.tpl
// You can remove new by setting agent_config_generate_methods_inside_class = no in file data_input.tpl
extern function new(string name = "");
// You can insert code here by setting agent_config_inc_inside_class in file data_input.tpl
endclass : data_input_config
// You can remove new by setting agent_config_generate_methods_after_class = no in file data_input.tpl
function data_input_config::new(string name = "");
super.new(name);
endfunction : new
// You can insert code here by setting agent_config_inc_after_class in file data_input.tpl
`endif // DATA_INPUT_CONFIG_SV