APB UVM Agent  0.0.1
apb_agent_pkg.sv
Go to the documentation of this file.
1 //------------------------------------------------------------
2 // Copyright 2010 Mentor Graphics Corporation
3 // All Rights Reserved Worldwide
4 //
5 // Licensed under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in
7 // compliance with the License. You may obtain a copy of
8 // the License at
9 //
10 // http://www.apache.org/licenses/LICENSE-2.0
11 //
12 // Unless required by applicable law or agreed to in
13 // writing, software distributed under the License is
14 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
15 // CONDITIONS OF ANY KIND, either express or implied. See
16 // the License for the specific language governing
17 // permissions and limitations under the License.
18 //------------------------------------------------------------
19 
20 /**
21 * The UVC package that encapuslates the individual components.
22 */
23 package apb_agent_pkg;
24 
25 import uvm_pkg::*;
26 `include "uvm_macros.svh"
27 
28 `include "apb_seq_item.svh"
29 `include "apb_agent_config.svh"
30 `include "apb_driver.svh"
31 `include "apb_coverage_monitor.svh"
32 `include "apb_monitor.svh"
33 `include "apb_sequencer.svh"
34 `include "apb_agent.svh"
35 
36 // Utility Sequences
37 `include "apb_seq.svh"
38 `include "apb_read_seq.svh"
39 `include "apb_write_seq.svh"
40 `include "reg2apb_adapter.svh"
41 
42 endpackage: apb_agent_pkg
The UVC package that encapuslates the individual components.