URL
https://opencores.org/ocsvn/lpffir/lpffir/trunk
Subversion Repositories lpffir
[/] [lpffir/] [trunk/] [uvm/] [rca_uvm/] [generated_tb/] [tb/] [rca/] [sv/] [rca_config.sv] - Rev 5
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: rca_config.sv
//
//
// Version: 1.0
//
// Code created by Easier UVM Code Generator version 2016-04-18-EP on Tue Mar 19 21:50:30 2019
//=============================================================================
// Description: Configuration for agent rca
//=============================================================================
`ifndef RCA_CONFIG_SV
`define RCA_CONFIG_SV
// You can insert code here by setting agent_config_inc_before_class in file rca.tpl
class rca_config extends uvm_object;
// Do not register config class with the factory
virtual rca_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 rca.tpl
// You can remove new by setting agent_config_generate_methods_inside_class = no in file rca.tpl
extern function new(string name = "");
// You can insert code here by setting agent_config_inc_inside_class in file rca.tpl
endclass : rca_config
// You can remove new by setting agent_config_generate_methods_after_class = no in file rca.tpl
function rca_config::new(string name = "");
super.new(name);
endfunction : new
// You can insert code here by setting agent_config_inc_after_class in file rca.tpl
`endif // RCA_CONFIG_SV