网上都说9.0后面的版本不带仿真功能,但我发现13.0还是有自带仿真。
接下来我用Quartus II 13.0进行一次简单的仿真:
1、新建文件夹test作为工程目录
2、打开Quartus,选择file -> new project wizard
page 2 of 5 跳过,我的板子型号如下,不过仿真而已,随便选个也行
后面page 4 5 都跳过
3、file -> new -> Verilog HDL file,新建一个Verilog文件,随便写个2选1选择器,点击Start Compilation进行编译:
module test(
input a,b,sel,
output out
);
assign out = sel ? a : b;
endmodule
4、file -> new -> VWF,新建一个波形文件:
双击左侧空白处添加信号
出现如下界面&#