verilog文件是以.v结尾的
//Date : 2023-01-09
//E-mail : xxxxxx@163.com
//copyright : xxxx
//-------------------------------------------------------------------------------
//module header may includes:
//module name,port,direction,port width and port types
module AndOr {
output X,Y,
input A,B,C
};
assign #10 X = A & B;
assign #10 Y = B | C;
endmodule
Makefile是一个脚本,简单理解为将仿真使用的命令放到脚本中,方便执行
all:compile simulate
compile:
vcs -sverilog -debug_all -timescale=1np/1ps full_adder.v full_adder_tb.v -l com.lg
simulate:
.simv -l sim.log
clean:
@rm -rf csrc DVEfiles simv simv.daidir ucli.key VCS*
@rm -rf *.log *.vpd *.svf *.SDF *Synth *Netlist*
@rm -rf alib-52
make all就会执行all下面的complie和simulate
生成sim.og文件
// & 后台运行dve
dve &
设计人员也需要会部分验证
//在linux中使用脚本进行综合
dc_shell -f xxx.tcl
//自动调用design compiler进行综合
//调出design compiler的界面工具
design_vision &
详细的过程不在这里进行详细叙述
通过逻辑综合可以看到RTL变成的具体电路
手机扫一扫
移动阅读更方便
你可能感兴趣的文章