打开软件
创建工程
create project
![在这里插入图片描述](https://img-blog.csdnimg.cn/892eda626d394733920854b71ca8f726.png)
先next,保留工程路径,配置环境
配置芯片环境
本次芯片类型
xc7k325tffg900-2
创建之后完整的demo
编写仿真内容
`timescale 1ns/1ps
module sim_top;
reg clk_1G;
initial begin
clk_1G = 0;
end
always #0.5ns clk_1G = !clk_1G;
initial begin
#10us;
$finish;
end
endmodule
仿真结果
结果分析
间隔1ns