blob: a0c4c4576aa6b8d2c86a17f23e5f458dcaa6b159 [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 aes_env_cov extends cip_base_env_cov #(.CFG_T(aes_env_cfg));
`uvm_component_utils(aes_env_cov)
// the base class provides the following handles for use:
// aes_env_cfg: cfg
// covergroups
function new(string name, uvm_component parent);
super.new(name, parent);
// instantiate all covergroups here
endfunction : new
endclass