blob: 149f06f3d2a2c3702c9b98991fc98b0ff2aff737 [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 i2c_agent_cov extends dv_base_agent_cov #(i2c_agent_cfg);
`uvm_component_utils(i2c_agent_cov)
//TODO: covergroups
function new(string name, uvm_component parent);
super.new(name, parent);
//TODO: instantiate all covergroups here
endfunction : new
endclass