1 |
4 |
vladimirar |
#######################################################################
|
2 |
|
|
# Copyright 2014-2015 SyoSil ApS
|
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 |
|
|
# README file for UVM scoreboard
|
21 |
|
|
#######################################################################
|
22 |
|
|
This file describes the basic contents of the UVM scoreboard release
|
23 |
|
|
and how to get started.
|
24 |
|
|
|
25 |
|
|
It is assumed that the UVM scoreboard is unpacked into the directory:
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
In general, the UVM scoreboard is documented in the generated
|
29 |
|
|
documentation. See file:////docs/html/index.html for more
|
30 |
|
|
information.
|
31 |
|
|
|
32 |
|
|
Furthermore, the /docs/ also contains the latest paper
|
33 |
|
|
describing the fundamentals of the SyoSil UVM scoreboard.
|
34 |
|
|
|
35 |
|
|
*NOTE*: The documentation is also available in PDF (/docs/pdf)
|
36 |
|
|
|
37 |
|
|
#######################################################################
|
38 |
|
|
# Directory structure
|
39 |
|
|
#######################################################################
|
40 |
|
|
.
|
41 |
|
|
├── docs Documentatio
|
42 |
|
|
│ └── html HTML documentation
|
43 |
|
|
│ └── pdf PDF documentation
|
44 |
|
|
├── src SyoSil UVM SCB source code
|
45 |
|
|
└── tb Simple example testbench
|
46 |
|
|
└── test UVM Tests
|
47 |
|
|
|
48 |
|
|
#######################################################################
|
49 |
|
|
# Getting started
|
50 |
|
|
#######################################################################
|
51 |
|
|
To get started you need to be able to integrate and configure the UVM
|
52 |
|
|
scoreboard. This is documented in file:////docs/html/index.html
|
53 |
|
|
|
54 |
|
|
Examples:
|
55 |
|
|
Compilation examples for use with Mentor, Cadence or Synopys are
|
56 |
|
|
provided. The example will only work if you set the vendor by setting
|
57 |
|
|
a symbolic link:
|
58 |
|
|
|
59 |
|
|
Mentor: ln -s Makefile.vendor.mentor Makefile.vendor
|
60 |
|
|
|
61 |
|
|
Cadence: ln -s Makefile.vendor.cadence Makefile.vendor
|
62 |
|
|
|
63 |
|
|
Synopsys: ln -s Makefile.vendor.synopsys Makefile.vendor
|
64 |
|
|
|
65 |
|
|
Once this is done, you can list the available targets by simply typing:
|
66 |
|
|
|
67 |
|
|
make
|