## vlog makes the preprocessing and compilation steps for verilog/systemverilog files vlogan -sv /design.sv /tb.sv ## vcs makes the elaboration steps. It takes the binary structures created from the compilation step previously and build it on top of it the simulation executable vcs -s top_tb -timescale 1ns/1ps ## run simulation work_dir/simv SZsd
## vlog makes the preprocessing and compilation steps for verilog/systemverilog files
vlogan
-
sv
&
lt
;
path_to_file
&
gt
;/
design
.
sv
&
lt
;
path_to_file
&
gt
;/
tb
.
sv
## vcs makes the elaboration steps. It takes the binary structures created from the compilation step previously and build it on top of it the simulation executable
vcs
-
s
&
lt
;
name_of_elaboration
&
gt
;
top_tb
-
timescale
1
ns
/1
ps
## run simulation
work_dir
/
simv