| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| class aes_env extends cip_base_env #( |
| .CFG_T (aes_env_cfg), |
| .COV_T (aes_env_cov), |
| .VIRTUAL_SEQUENCER_T(aes_virtual_sequencer), |
| .SCOREBOARD_T (aes_scoreboard) |
| ); |
| `uvm_component_utils(aes_env) |
| |
| `uvm_component_new |
| |
| function void build_phase(uvm_phase phase); |
| super.build_phase(phase); |
| |
| endfunction |
| |
| function void connect_phase(uvm_phase phase); |
| super.connect_phase(phase); |
| endfunction |
| |
| endclass |