head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2007.04.20.08.26.24; author kaushal_buch; state Exp; branches; next ; commitid 51b74628792c4567; desc @@ 1.1 log @Initial Version @ text @ // 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 @