compare_test.v
来自「it about using veriolog complement some 」· Verilog 代码 · 共 38 行
V
38 行
//******************////copyright 2007, DTK//all right reserved////project name: : test1//filename : file_testbnech//author : wangyang//data : 2007/8/2//version : 1.0////module name : module_compare_test//abstract : testbench////modification history//---------------------------------//&Log&////*************************`timescale 1ns/1ns //??????`include"e:/verilog_study/compare.v"module compare_test;reg A,B;wire Equal;initialbeginA=0;B=0;#100 A=0;B=1;#100 A=1;B=1;#100 A=1;B=0;#100 A=0;B=0;#100 $stop;endcompare m(.A(A),.B(B),.Equal(Equal));endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?