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_cfg extends dv_base_agent_cfg; |
| 6 | |
Srikrishna Iyer | 627f782 | 2020-01-15 21:39:29 -0800 | [diff] [blame] | 7 | // interface handle used by driver, monitor & the sequencer, via cfg handle |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 8 | virtual ${name}_if vif; |
| 9 | |
| 10 | `uvm_object_utils_begin(${name}_agent_cfg) |
| 11 | `uvm_object_utils_end |
| 12 | |
| 13 | `uvm_object_new |
| 14 | |
| 15 | endclass |