1.2 makefile
前言
makefile文件是测试用例的入口文件,这里主要介绍uvm-1.2自带测试用例中,VCS工具的makefile文件。包括每个case共用的makefile文件,和每个case单独使用的makefile文件。
一、所有测试用例共用的makefile文件
共用的makefile文件如下所示。
x: all
#
# Include file for VCS Makefiles
#
UVM_VERBOSITY = UVM_LOW
#
# Note that +acc and +vpi have an adverse impact on performance
# and should not be used unless necessary.
#
# They are used here because they are required by some examples
# (backdoor register accesses).

本文主要介绍uvm-1.2自带测试用例中VCS工具的makefile文件,包括所有测试用例共用的和每个测试用例单独的makefile文件。共用文件定义函数、声明变量,单独文件指定路径、调用函数等。了解makefile文件是启动仿真的关键。
1818

被折叠的 条评论
为什么被折叠?



