1 |
16 |
HanySalah |
//
|
2 |
|
|
//------------------------------------------------------------------------------
|
3 |
|
|
// Copyright 2007-2011 Mentor Graphics Corporation
|
4 |
|
|
// Copyright 2007-2010 Cadence Design Systems, Inc.
|
5 |
|
|
// Copyright 2010 Synopsys, Inc.
|
6 |
|
|
// All Rights Reserved Worldwide
|
7 |
|
|
//
|
8 |
|
|
// Licensed under the Apache License, Version 2.0 (the
|
9 |
|
|
// "License"); you may not use this file except in
|
10 |
|
|
// compliance with the License. You may obtain a copy of
|
11 |
|
|
// the License at
|
12 |
|
|
//
|
13 |
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
14 |
|
|
//
|
15 |
|
|
// Unless required by applicable law or agreed to in
|
16 |
|
|
// writing, software distributed under the License is
|
17 |
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
18 |
|
|
// CONDITIONS OF ANY KIND, either express or implied. See
|
19 |
|
|
// the License for the specific language governing
|
20 |
|
|
// permissions and limitations under the License.
|
21 |
|
|
//------------------------------------------------------------------------------
|
22 |
|
|
|
23 |
|
|
`include "seq/uvm_sequence_item.svh"
|
24 |
|
|
`include "seq/uvm_sequencer_base.svh"
|
25 |
|
|
`include "seq/uvm_sequencer_analysis_fifo.svh"
|
26 |
|
|
`include "seq/uvm_sequencer_param_base.svh"
|
27 |
|
|
`include "seq/uvm_sequencer.svh"
|
28 |
|
|
`include "seq/uvm_push_sequencer.svh"
|
29 |
|
|
`include "seq/uvm_sequence_base.svh"
|
30 |
|
|
`include "seq/uvm_sequence.svh"
|
31 |
|
|
`include "seq/uvm_sequence_library.svh"
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
`include "seq/uvm_sequence_builtin.svh"
|
35 |
|
|
|
36 |
|
|
typedef uvm_sequence #(uvm_sequence_item, uvm_sequence_item) uvm_default_sequence_type;
|
37 |
|
|
typedef uvm_sequencer #(uvm_sequence_item, uvm_sequence_item) uvm_default_sequencer_type;
|
38 |
|
|
typedef uvm_driver #(uvm_sequence_item, uvm_sequence_item) uvm_default_driver_type;
|
39 |
|
|
typedef uvm_sequencer_param_base #(uvm_sequence_item, uvm_sequence_item) uvm_default_sequencer_param_type;
|