`timescale 1ns / 1ps

////////////////////////////////////////////////////////////////////////////////
// Company: 
// Engineer:
//
// Create Date:   11:04:10 02/04/2015
// Design Name:   top
// Module Name:   H:/Product/LK/FPGA/LK-Xilinx-TB/VerilogHDL/Relay_Buz/testbench.v
// Project Name:  Relay_Buz
// Target Device:  
// Tool versions:  
// Description: 
//
// Verilog Test Fixture created by ISE for module: top
//
// Dependencies:
// 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 
////////////////////////////////////////////////////////////////////////////////

module testbench;

	// Inputs
	reg osc;

	// Outputs
	wire Buzz;
	wire Relay;

	// Instantiate the Unit Under Test (UUT)
	top uut (
		.osc(osc), 
		.Buzz(Buzz), 
		.Relay(Relay)
	);

	initial begin
		// Initialize Inputs
		osc = 0;

		// Wait 100 ns for global reset to finish
		#100;
        
		// Add stimulus here

	end
	always #10 osc = ~osc;
      
endmodule

