URL
https://opencores.org/ocsvn/qaz_libs/qaz_libs/trunk
Subversion Repositories qaz_libs
[/] [qaz_libs/] [trunk/] [basal/] [sim/] [tests/] [tb_gear_box/] [the_test.v] - Rev 34
Compare with Previous | Blame | View Log
// -------------------------------------------------------------------- // // -------------------------------------------------------------------- `timescale 1ns/10ps module the_test( input tb_clk, input tb_rst ); task run_the_test; begin // -------------------------------------------------------------------- // insert test below // -------------------------------------------------------------------- $display("^^^---------------------------------"); $display("^^^ %16.t | Testbench begun.\n", $time); $display("^^^---------------------------------"); repeat(200) @(posedge tb_clk); // -------------------------------------------------------------------- // insert test above // -------------------------------------------------------------------- end endtask endmodule