| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| class ${name}_device_driver extends ${name}_driver; |
| `uvm_component_utils(${name}_device_driver) |
| // the base class provides the following handles for use: |
| // ${name}_agent_cfg: cfg |
| virtual task run_phase(uvm_phase phase); |
| // base class forks off reset_signals() and get_and_drive() tasks |
| virtual task reset_signals(); |
| // drive trans received from sequencer |
| virtual task get_and_drive(); |