lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1 | // Copyright lowRISC contributors. |
| 2 | // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | // SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | class ${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 | |
| 18 | endclass |