单独使用modelsim进行仿真
以例子来说明 我要用testbench lpf_direct_tb.v 来测试文件lpf_direct.v
命令行方式和图形界面两种方式都可以
1 映射库 .在编译源文件之前,创建一个库存放编译的结果.
vlib lpf_direct_tb
把库映射到工作目录
vmap work lpf_direct_tb
2编译设计文件 vlog lpf_direct.v lpf_direct_tb.v 如果是vhdl使用vcom
3把编译好的工程加入模拟器 vsim lpf_direct_tb
4 仿真
把要仿真的信号添加到视窗 add wave -position insertpoint \sim:/lpf_direct_tb/clk \
sim:/lpf_direct_tb/reset \
sim:/lpf_direct_tb/x_in \
sim:/lpf_direct_tb/y_out
运行 run.可以设置仿真时间 run 100us .
5 调试可用的命令有describe, drivers,examine,force,log,show
When you get to the end of your rope, tie a knot and hang on.
--Franklin D. Roosevelt
OPTIMISM, PASSION & HARDWORK