URL
https://opencores.org/ocsvn/lpffir/lpffir/trunk
Subversion Repositories lpffir
[/] [lpffir/] [trunk/] [uvm/] [rca_uvm/] [generated_tb/] [tb/] [top/] [sv/] [top_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: top_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 top//=============================================================================`ifndef TOP_CONFIG_SV`define TOP_CONFIG_SV// You can insert code here by setting top_env_config_inc_before_class in file common.tplclass top_config extends uvm_object;// Do not register config class with the factoryvirtual rca_if rca_vif;uvm_active_passive_enum is_active_rca = UVM_ACTIVE;bit checks_enable_rca;bit coverage_enable_rca;// You can insert variables here by setting config_var in file common.tpl// You can remove new by setting top_env_config_generate_methods_inside_class = no in file common.tplextern function new(string name = "");// You can insert code here by setting top_env_config_inc_inside_class in file common.tplendclass : top_config// You can remove new by setting top_env_config_generate_methods_after_class = no in file common.tplfunction top_config::new(string name = "");super.new(name);// You can insert code here by setting top_env_config_append_to_new in file common.tplendfunction : new// You can insert code here by setting top_env_config_inc_after_class in file common.tpl`endif // TOP_CONFIG_SV
