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