blob: b9dc2abbe8476425cc32ef7026a5f8b24006a179 [file]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
class jtag_riscv_agent_cov extends dv_base_agent_cov #(jtag_riscv_agent_cfg);
`uvm_component_utils(jtag_riscv_agent_cov)
// the base class provides the following handles for use:
// jtag_agent_cfg: cfg
// covergroups
function new(string name, uvm_component parent);
super.new(name, parent);
// instantiate all covergroups here
endfunction : new
endclass