当前位置:   article > 正文

Vivado创建项目和仿真_vivado仿真

vivado仿真

一、创建项目

Create Project:

image-20220910152735413


Next

image-20220910153051410


填写项目名,选择项目位置,Next

image-20220910153552097


选择RTL项目,勾选Do not specify sources at the time,即不添加源文件,Next

image-20220910154925725


选择芯片类型,Next

image-20220910155232641


Finish

image-20220910155250316



二、添加Verlog设计文件


1. 添加t.v文件

Add Sources

image-20220910155717438


选择第二个,Next

image-20220910155749774


Create File

image-20220910155807474


选择文件类型,填写文件名,OK

image-20220910160443001


Finish

image-20220910160531279


定义模块输入输出端口,暂时不设置,直接OK

image-20220910160630613


2. 编写文件

双击打开文件:

image-20220910160757570

image-20220910160820544


编写:

`timescale 1ns / 1ps
//
// Company: 
// Engineer: 
// 
// Create Date: 2022/09/10 16:06:39
// Design Name: 
// Module Name: t
// Project Name: 
// Target Devices: 
// Tool Versions: 
// Description: 
// 
// Dependencies: 
// 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 
//


module t(
    input   wire    a,
    input   wire    b,
    
    output  wire    c,
    output  wire    d,
    output  wire    e,
    output  wire    f
);

    assign c = ~a;
    assign d = a & b;
    assign e = a | b;
    assign f = a ^ b;


endmodule

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40


三、添加仿真文件


1. 添加t_tb.v文件

image-20220910164616029

添加仿真文件,填写名称:

image-20220910164711138


OK

image-20220910164726003


Yes

image-20220910164851870


2. 编写文件

打开文件:

image-20220910164949638


编写:

`timescale 1ns / 1ps
//
// Company: 
// Engineer: 
// 
// Create Date: 2022/09/10 16:48:54
// Design Name: 
// Module Name: t_tb
// Project Name: 
// Target Devices: 
// Tool Versions: 
// Description: 
// 
// Dependencies: 
// 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 
//


module t_tb(

    );
    
    parameter   CYCLE   =   20;
    
    reg     clk;
    
    reg     a;
    reg     b;
    
    wire    c;
    wire    d;
    wire    e;
    wire    f;
    
    
    always #(CYCLE / 2) clk = ~clk;
    
    initial begin
        clk = 0;
        a = 1'b0;
        b = 1'b0;
        repeat(10) begin
            a = {$random};
            b = {$random};
            # (CYCLE * 5);
        end
        
        $finish;
    end
    
    
    t t_t(
       /*input   wire*/  .a(a),
       /*input   wire*/  .b(b),

       /*output  wire*/  .c(c),
       /*output  wire*/  .d(d),
       /*output  wire*/  .e(e),
       /*output  wire*/  .f(f)
    );
    
endmodule

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67

四、仿真


1. 运行仿真

运行仿真:

image-20220910171210991


查看仿真波形:

image-20220910171310843


2. 仿真波形操作

按键操作
I 扩大
O 缩小
Shift + 鼠标滚轮左右移动

右击添加波形:

image-20220910171837359

改变波形颜色:

image-20220910171920620


修改进制表示:

image-20220910172010491


一些快捷键

按键功能
CTRL + D 复制光标所在行
CTRL + /单行注释
CTRL + SHITF + /多行注释

参考

FPGA创建工程

Xilinx Vivado的使用详细介绍

CTRL + D | 复制光标所在行 |
| CTRL + / | 单行注释 |
| CTRL + SHITF + / | 多行注释 |

参考

FPGA创建工程

Xilinx Vivado的使用详细介绍

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/548216
推荐阅读
相关标签
  

闽ICP备14008679号