update_filter_tb.v

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

V
45
字号
//// Verilog Module dwt2_lib.update_filter_tb.arch_name//// Created://          by - VLSI4.UNKNOWN (VLSI04)//          at - 14:43:42 03/28/2008//// using Mentor Graphics HDL Designer(TM) 2004.1b (Build 12)//`resetall`timescale 1ns/10psmodule update_filter_tb;  reg [23:0] in1,in2;  reg clock,reset;  wire [23:0] m_out6,m_out7;    initial   begin    clock=1'b0;    reset=1'b0;    in1=24'b000101010100000000000000;    in2=24'b000001010100000000000000;    #2 reset=1'b1;    #3 reset=1'b0;    #6 reset=1'b1;    #4 reset=1'b0;    #3 reset=1'b1; end    always    #5 clock=!clock;        always  begin    #10 in1=~in1;    #15 in2=~in2;  end  update_filter uf(in1,in2,clock,reset,Ext_en1,Ext_en2,Ext_en3,Ext_en4,sel_en,m_out6,m_out7) ; fsm fsm1(clock,reset,Ext_en1,Ext_en2,Ext_en3,Ext_en4,sel_en);   endmodule

⌨️ 快捷键说明

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