blob: 91e48d42753c923d43654007e835bc54e9ad4977 [file] [log] [blame]
lowRISC Contributors802543a2019-08-31 12:12:56 +01001// Copyright lowRISC contributors.
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5class ${name}_agent_cov extends dv_base_agent_cov #(${name}_agent_cfg);
6 `uvm_component_utils(${name}_agent_cov)
7
8 // the base class provides the following handles for use:
9 // ${name}_agent_cfg: cfg
10
11 // covergroups
12
13 function new(string name, uvm_component parent);
14 super.new(name, parent);
15 // instantiate all covergroups here
16 endfunction : new
17
18endclass