top_module_tb.v

来自「it is used to find traffic」· Verilog 代码 · 共 35 行

V
35
字号
//// Verilog Module dwt_final_lib.top_module_tb.arch_name//// Created://          by - VLSI4.UNKNOWN (VLSI04)//          at - 11:27:10 05/08/2008//// using Mentor Graphics HDL Designer(TM) 2004.1b (Build 12)//`resetall`timescale 1ns/10psmodule top_module_tb ;  reg clk,reset;  reg [4:0] coeff;  wire done;    initial  begin   clk=1'b0;  reset=1'b0;  coeff=5'b00011;  #4 reset=1'b1;  #3 reset=1'b0;  #6 reset=1'b1;    end    always  #50 clk=!clk;    Top_module  Tm(clk,reset,coeff,done);   // ### Please start your Verilog code here ###endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?