|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Apr 20 10:26:25 CEST 2007
Subject: [cvs-checkins] MODIFIED: fht ...
Date: 00/07/04 20:10:26 Added: fht fht_tb.v Log: Initial Version Revision Changes Path 1.1 fht/fht_tb.v http://www.opencores.org/cvsweb.shtml/fht/fht_tb.v?rev=1.1&content-type=text/x-cvsweb-markup Index: fht_tb.v =================================================================== // Testbench for Fast Hadamhard Transforms implementation // Developed by Kaushal D. Buch // March, 2007. module fht_tb (); reg clk,reset ; reg[7:0] data_i ; wire[7:0] data_o ; fht U_fht(.clk(clk), .reset(reset), .data_i(data_i) , .data_o(data_o)); initial begin clk = 'b0 ; reset = 'b1 ; #5 reset = 'b0 ; #15 reset = 'b1 ; data_i = 8'b0010_1010 ; repeat(1000) @(posedge clk); $finish ; end always begin clk = #5 ~clk ; end initial begin $shm_open("fht_tb"); $shm_probe("AC"); end endmodule
|
 |